burn/burn-ndarray
Nathaniel Simard 4e28e2a776
chore: prepare release v0.6.0 (#246)
2023-03-21 09:47:37 -04:00
..
src Feat/index_select (#227) 2023-03-12 17:44:22 -04:00
Cargo.toml chore: prepare release v0.6.0 (#246) 2023-03-21 09:47:37 -04:00
LICENSE-APACHE Refactor/backend ndarray (#105) 2022-11-18 20:37:38 -05:00
LICENSE-MIT Refactor/backend ndarray (#105) 2022-11-18 20:37:38 -05:00
README.md Update readme with blas-accelerate flag information (#236) 2023-03-15 21:44:13 -04:00
build.rs Add accelerate framework support for burn-ndarray (#183) (#184) 2023-02-28 09:09:47 -05:00

README.md

Burn NdArray

Burn ndarray backend

Current Crates.io Version license

Feature Flags

This crate can be used without the standard library (#![no_std]) with alloc by disabling the default std feature.

The following flags support various BLAS options:

  • blas-accelerate - Accelerate framework (macOS only)
  • blas-netlib - Netlib
  • blas-openblas - OpenBLAS static linked
  • blas-openblas-system - OpenBLAS from the system

Note, under the no_std mode, a random seed is generated during the build time if the seed is not initialized by by Backend::seed method.