You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# In your Cargo.toml
[dependencies]
tensor-core = "0.1"## Build and test```sh# Clone the repositorygit clone https://github.com/rust-ml-learners/rust-ml-primitivescd rust-ml-primitives# Build everythingcargo build --workspace# Build specific cratecargo build -p tensor-core# Run testscargo test --workspace# Run benchmarkscargo bench --workspace
About
Foundational ML primitives in Rust - tensors, autodiff, embeddings, attention, and others