diff options
author | zachcp <zachcp@users.noreply.github.com> | 2024-12-01 12:39:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-01 18:39:38 +0100 |
commit | 6f715f92564c10426c5565cd30ece25aee8d72ac (patch) | |
tree | 40d4ab40c7d5f52c41d8d4b6e8b73a758947a0bb /candle-core/src/metal_backend/mod.rs | |
parent | dba7a9c93e4c84c8197e8a5b56f40adcf2650bde (diff) | |
download | candle-6f715f92564c10426c5565cd30ece25aee8d72ac.tar.gz candle-6f715f92564c10426c5565cd30ece25aee8d72ac.tar.bz2 candle-6f715f92564c10426c5565cd30ece25aee8d72ac.zip |
add scatter add (#2656)
Diffstat (limited to 'candle-core/src/metal_backend/mod.rs')
-rw-r--r-- | candle-core/src/metal_backend/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/candle-core/src/metal_backend/mod.rs b/candle-core/src/metal_backend/mod.rs index e8159f46..bffba50d 100644 --- a/candle-core/src/metal_backend/mod.rs +++ b/candle-core/src/metal_backend/mod.rs @@ -1284,6 +1284,7 @@ impl BackendStorage for MetalStorage { (DType::U8, DType::F32) => "sa_u8_f32", (DType::U8, DType::F16) => "sa_u8_f16", (DType::U8, DType::BF16) => "sa_u8_bf16", + (DType::U32, DType::U32) => "sa_u32_u32", (DType::U32, DType::F32) => "sa_u32_f32", (DType::U32, DType::F16) => "sa_u32_f16", (DType::U32, DType::BF16) => "sa_u32_bf16", |