summaryrefslogtreecommitdiff
path: root/candle-wasm-examples/llama2-c
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-07-29 11:32:58 +0100
committerGitHub <noreply@github.com>2023-07-29 11:32:58 +0100
commit4bf2ebf836523a4ebf97494f387f064b204db717 (patch)
tree1899e7d18c3538f45376aa9d0cdd5d4aa9c094fa /candle-wasm-examples/llama2-c
parent50d8273ae4692e040045dbc8fca09f261fa8c237 (diff)
downloadcandle-4bf2ebf836523a4ebf97494f387f064b204db717.tar.gz
candle-4bf2ebf836523a4ebf97494f387f064b204db717.tar.bz2
candle-4bf2ebf836523a4ebf97494f387f064b204db717.zip
Use u8 tensors for masks. (#273)
Diffstat (limited to 'candle-wasm-examples/llama2-c')
-rw-r--r--candle-wasm-examples/llama2-c/src/model.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/candle-wasm-examples/llama2-c/src/model.rs b/candle-wasm-examples/llama2-c/src/model.rs
index d95672b9..8cf53c2a 100644
--- a/candle-wasm-examples/llama2-c/src/model.rs
+++ b/candle-wasm-examples/llama2-c/src/model.rs
@@ -47,9 +47,8 @@ impl Cache {
if let Some(mask) = masks.get(&t) {
Ok(mask.clone())
} else {
- // TODO: If we support bool or u8 tensors, this would be better.
let mask: Vec<_> = (0..t)
- .flat_map(|i| (0..t).map(move |j| u32::from(j > i)))
+ .flat_map(|i| (0..t).map(move |j| u8::from(j > i)))
.collect();
let mask = Tensor::from_slice(&mask, (t, t), &self.device)?;
masks.insert(t, mask.clone());