summaryrefslogtreecommitdiff
path: root/candle-core/src/device.rs
diff options
context:
space:
mode:
authorNicolas Patry <patry.nicolas@protonmail.com>2023-11-09 19:30:59 +0100
committerNicolas Patry <nicolas@Nicolass-MacBook-Pro.local>2023-11-20 14:12:05 +0100
commita4c4a564299d89e8b2047ddd34d5daba0c1349e1 (patch)
tree9f4d8811d4de8d1edf4fac62201729e889f41f50 /candle-core/src/device.rs
parentf49bf6a81dca20b4b684e9b6e4fdec868fb53c45 (diff)
downloadcandle-a4c4a564299d89e8b2047ddd34d5daba0c1349e1.tar.gz
candle-a4c4a564299d89e8b2047ddd34d5daba0c1349e1.tar.bz2
candle-a4c4a564299d89e8b2047ddd34d5daba0c1349e1.zip
Metal part 1 - Scaffolding for metal.
Diffstat (limited to 'candle-core/src/device.rs')
-rw-r--r--candle-core/src/device.rs10
1 files changed, 7 insertions, 3 deletions
diff --git a/candle-core/src/device.rs b/candle-core/src/device.rs
index de57c03a..2665f243 100644
--- a/candle-core/src/device.rs
+++ b/candle-core/src/device.rs
@@ -1,6 +1,6 @@
use crate::backend::BackendDevice;
use crate::cpu_backend::CpuDevice;
-use crate::{CpuStorage, DType, Result, Shape, Storage, WithDType};
+use crate::{bail, CpuStorage, DType, Result, Shape, Storage, WithDType};
/// A `DeviceLocation` represents a physical device whereas multiple `Device`
/// can live on the same location (typically for cuda devices).
@@ -105,14 +105,14 @@ impl<S: WithDType, const N1: usize, const N2: usize, const N3: usize, const N4:
impl<S: NdArray> NdArray for Vec<S> {
fn shape(&self) -> Result<Shape> {
if self.is_empty() {
- crate::bail!("empty array")
+ bail!("empty array")
}
let shape0 = self[0].shape()?;
let n = self.len();
for v in self.iter() {
let shape = v.shape()?;
if shape != shape0 {
- crate::bail!("two elements have different shapes {shape:?} {shape0:?}")
+ bail!("two elements have different shapes {shape:?} {shape0:?}")
}
}
Ok(Shape::from([[n].as_slice(), shape0.dims()].concat()))
@@ -203,7 +203,11 @@ impl Device {
Device::Metal(_device) => {
// let storage = device.rand_uniform(shape, dtype, lo, up)?;
// Ok(Storage::Metal(storage))
+<<<<<<< HEAD
crate::bail!("Metal rand_uniform not implemented")
+=======
+ bail!("Metal rand_uniform not implemented")
+>>>>>>> 8cf39d27 (Metal part 1 - Scaffolding for metal.)
}
}
}