burn/burn-ndarray
Nathaniel Simard 25deb5a13b
Refactor/autodiff (#186)
2023-02-28 20:01:26 -05:00
..
src Refactor/autodiff (#186) 2023-02-28 20:01:26 -05:00
Cargo.toml Add accelerate framework support for burn-ndarray (#183) (#184) 2023-02-28 09:09:47 -05: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 Make burn and burn-core packages no_std compatible (#168) (#173) 2023-02-25 09:38:01 -05: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-netlib
  • blas-openblas
  • blas-openblas-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.