diff options
author | Shengtuo Hu <h1994st@users.noreply.github.com> | 2024-09-13 13:21:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 22:21:57 +0200 |
commit | ebf722b446cf516dcecbdaf3f18551e7dcc0e6fd (patch) | |
tree | 950a0ffd433104aef775d8bc1436f1da0c965f7a | |
parent | c09afc211c7e6177223883de263733240e3210fe (diff) | |
download | candle-ebf722b446cf516dcecbdaf3f18551e7dcc0e6fd.tar.gz candle-ebf722b446cf516dcecbdaf3f18551e7dcc0e6fd.tar.bz2 candle-ebf722b446cf516dcecbdaf3f18551e7dcc0e6fd.zip |
Export TensorIndexer public to candle users (#2477)
-rw-r--r-- | candle-core/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-core/src/lib.rs b/candle-core/src/lib.rs index 2a36cebd..d8d62532 100644 --- a/candle-core/src/lib.rs +++ b/candle-core/src/lib.rs @@ -81,7 +81,7 @@ pub use custom_op::{CustomOp1, CustomOp2, CustomOp3, InplaceOp1, InplaceOp2, Inp pub use device::{Device, DeviceLocation, NdArray}; pub use dtype::{DType, DTypeParseError, FloatDType, IntDType, WithDType}; pub use error::{Error, Result}; -pub use indexer::IndexOp; +pub use indexer::{IndexOp, TensorIndexer}; pub use layout::Layout; pub use shape::{Shape, D}; pub use storage::Storage; |