diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-10-29 16:28:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-29 15:28:53 +0000 |
commit | 154c674a798fd5a40d57ff9a8664856d9c41ca56 (patch) | |
tree | eab3a80726033640f2f76ec89b76c19395d8d5b4 /candle-core/src/op.rs | |
parent | 7bbde55c61d9bff90c9f7d0005ed17bbea4b4a8f (diff) | |
download | candle-154c674a798fd5a40d57ff9a8664856d9c41ca56.tar.gz candle-154c674a798fd5a40d57ff9a8664856d9c41ca56.tar.bz2 candle-154c674a798fd5a40d57ff9a8664856d9c41ca56.zip |
Add i64-abs. (#1216)
Diffstat (limited to 'candle-core/src/op.rs')
-rw-r--r-- | candle-core/src/op.rs | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/candle-core/src/op.rs b/candle-core/src/op.rs index b7f99f11..e1168c2e 100644 --- a/candle-core/src/op.rs +++ b/candle-core/src/op.rs @@ -536,7 +536,6 @@ unary_op!(Log, "log", v, v.ln(), vs_ln, vd_ln); unary_op!(Sin, "sin", v, v.sin(), vs_sin, vd_sin); unary_op!(Cos, "cos", v, v.cos(), vs_cos, vd_cos); unary_op!(Tanh, "tanh", v, v.tanh(), vs_tanh, vd_tanh); -unary_op!(Abs, "abs", v, v.abs()); unary_op!(Neg, "neg", v, -v); unary_op!(Recip, "recip", v, v.recip()); unary_op!(Sqr, "sqr", v, v * v, vs_sqr, vd_sqr); @@ -666,6 +665,40 @@ impl UnaryOpT for Erf { } } +impl UnaryOpT for Abs { + const NAME: &'static str = "abs"; + const KERNEL: &'static str = "uabs"; + const V: Self = Abs; + #[inline(always)] + fn bf16(v: bf16) -> bf16 { + v.abs() + } + #[inline(always)] + fn f16(v: f16) -> f16 { + v.abs() + } + #[inline(always)] + fn f32(v: f32) -> f32 { + v.abs() + } + #[inline(always)] + fn f64(v: f64) -> f64 { + v.abs() + } + #[inline(always)] + fn u8(v: u8) -> u8 { + v + } + #[inline(always)] + fn u32(v: u32) -> u32 { + v + } + #[inline(always)] + fn i64(v: i64) -> i64 { + v.abs() + } +} + impl UnaryOpT for Ceil { const NAME: &'static str = "ceil"; const KERNEL: &'static str = "uceil"; |