summaryrefslogtreecommitdiff
path: root/candle-core/src/quantized/metal.rs
diff options
context:
space:
mode:
authorNicolas Patry <patry.nicolas@protonmail.com>2024-02-13 16:28:56 +0100
committerGitHub <noreply@github.com>2024-02-13 16:28:56 +0100
commitc1b418586c9477a85150ce6c15dcfe4c93d3a27d (patch)
treedaabda27c6689f7ea9db68ceb8f6bd74ebf8f4b1 /candle-core/src/quantized/metal.rs
parentad73e93da2cf7311cb5c5bc39250aa335c5f9b76 (diff)
downloadcandle-c1b418586c9477a85150ce6c15dcfe4c93d3a27d.tar.gz
candle-c1b418586c9477a85150ce6c15dcfe4c93d3a27d.tar.bz2
candle-c1b418586c9477a85150ce6c15dcfe4c93d3a27d.zip
Fixing quantized llama demo on metal. (#1703)
Diffstat (limited to 'candle-core/src/quantized/metal.rs')
-rw-r--r--candle-core/src/quantized/metal.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/candle-core/src/quantized/metal.rs b/candle-core/src/quantized/metal.rs
index fe57ce14..94105327 100644
--- a/candle-core/src/quantized/metal.rs
+++ b/candle-core/src/quantized/metal.rs
@@ -14,6 +14,10 @@ impl QMetalStorage {
self.dtype
}
+ pub fn device(&self) -> &MetalDevice {
+ &self.device
+ }
+
pub fn buffer(&self) -> &Buffer {
&self.buffer
}