summaryrefslogtreecommitdiff
path: root/candle-core/src/lib.rs
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-07-23 17:00:00 +0200
committerGitHub <noreply@github.com>2023-07-23 16:00:00 +0100
commit23827c49cd6c983ba0dc36c1cbc9cc397f43b2c0 (patch)
tree04404a97a114126cd5faaaeb97a486f9cdb7b920 /candle-core/src/lib.rs
parente449ce53a2f3c85f23ca0f2e7d557a0d0003e0ca (diff)
downloadcandle-23827c49cd6c983ba0dc36c1cbc9cc397f43b2c0.tar.gz
candle-23827c49cd6c983ba0dc36c1cbc9cc397f43b2c0.tar.bz2
candle-23827c49cd6c983ba0dc36c1cbc9cc397f43b2c0.zip
Cleanup some todos. (#226)
* Cleanup some todos. * Fix more todo. * Optimize for the contiguous case. * Add the IntDType trait. * Handle the intdtype trait for more ops. * Remove a todo. * Remove a todo.
Diffstat (limited to 'candle-core/src/lib.rs')
-rw-r--r--candle-core/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-core/src/lib.rs b/candle-core/src/lib.rs
index 5a35955f..787ea63a 100644
--- a/candle-core/src/lib.rs
+++ b/candle-core/src/lib.rs
@@ -61,7 +61,7 @@ mod variable;
pub use cpu_backend::CpuStorage;
pub use device::{Device, DeviceLocation};
-pub use dtype::{DType, WithDType};
+pub use dtype::{DType, IntDType, WithDType};
pub use error::{Error, Result};
pub use indexer::IndexOp;
pub use layout::Layout;