diff options
author | laurent <laurent.mazare@gmail.com> | 2023-07-03 08:37:46 +0100 |
---|---|---|
committer | laurent <laurent.mazare@gmail.com> | 2023-07-03 08:37:46 +0100 |
commit | cf2789fb819049cb33a52d73b84a5810cc27cc97 (patch) | |
tree | d2944472bcc6557de5b712aeda280bb476adadf3 /candle-core/src/lib.rs | |
parent | 9e419641fb5594435ea8f0abd04547db0991c2b2 (diff) | |
download | candle-cf2789fb819049cb33a52d73b84a5810cc27cc97.tar.gz candle-cf2789fb819049cb33a52d73b84a5810cc27cc97.tar.bz2 candle-cf2789fb819049cb33a52d73b84a5810cc27cc97.zip |
Move some safetensors bits in the candle-core crate.
Diffstat (limited to 'candle-core/src/lib.rs')
-rw-r--r-- | candle-core/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/candle-core/src/lib.rs b/candle-core/src/lib.rs index 6a860116..0d4c2a8d 100644 --- a/candle-core/src/lib.rs +++ b/candle-core/src/lib.rs @@ -10,6 +10,7 @@ mod error; mod layout; mod npy; mod op; +pub mod safetensors; mod shape; mod storage; mod strided_index; |