| Crates.io | sklears-simd |
| lib.rs | sklears-simd |
| version | 0.1.0-beta.1 |
| created_at | 2025-10-13 11:51:59.536618+00 |
| updated_at | 2026-01-01 21:26:55.854634+00 |
| description | High-performance SIMD acceleration primitives for the Sklears machine learning ecosystem |
| homepage | https://github.com/cool-japan/sklears |
| repository | https://github.com/cool-japan/sklears |
| max_upload_size | |
| id | 1880415 |
| size | 3,873,948 |
Latest release:
0.1.0-beta.1(January 1, 2026). See the workspace release notes for highlights and upgrade guidance.
sklears-simd exposes low-level SIMD, GPU, and hardware acceleration utilities used across the sklears ecosystem. While primarily an internal crate, it is documented for contributors building new high-performance components.
use sklears_simd::vector::F32x4;
let a = F32x4::new(1.0, 2.0, 3.0, 4.0);
let b = F32x4::splat(2.0);
let result = a.mul(b);
assert_eq!(result.horizontal_sum(), 20.0);
0.1.0-beta.1.TODO.md.