diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-09-01 15:26:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-01 14:26:18 +0100 |
commit | 237323c2bcfde1b7f881d2b71e21be27b3f73838 (patch) | |
tree | f7dc01f93777f5c5a3922d0f9cecdac063933468 /candle-core/src/device.rs | |
parent | af552a52748cec1936472f2b10d4d65995846c54 (diff) | |
download | candle-237323c2bcfde1b7f881d2b71e21be27b3f73838.tar.gz candle-237323c2bcfde1b7f881d2b71e21be27b3f73838.tar.bz2 candle-237323c2bcfde1b7f881d2b71e21be27b3f73838.zip |
Cleanup the pyo3 setup. (#705)
Diffstat (limited to 'candle-core/src/device.rs')
-rw-r--r-- | candle-core/src/device.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/candle-core/src/device.rs b/candle-core/src/device.rs index 84716249..c057595f 100644 --- a/candle-core/src/device.rs +++ b/candle-core/src/device.rs @@ -16,7 +16,6 @@ pub enum Device { Cuda(crate::CudaDevice), } -// TODO: Should we back the cpu implementation using the NdArray crate or similar? pub trait NdArray { fn shape(&self) -> Result<Shape>; |