From 402ddcfcb471bedee4600c258cccd9344b3e25ce Mon Sep 17 00:00:00 2001 From: Laurent Mazare Date: Sun, 24 Sep 2023 17:21:37 +0100 Subject: [PATCH] Add the missing kernel. (#955) --- candle-kernels/src/unary.cu | 1 + 1 file changed, 1 insertion(+) diff --git a/candle-kernels/src/unary.cu b/candle-kernels/src/unary.cu index 105d8c3a..d65eac17 100644 --- a/candle-kernels/src/unary.cu +++ b/candle-kernels/src/unary.cu @@ -126,6 +126,7 @@ UNARY_OP1(__half, upowf_f16, powg(x, param)) UNARY_OP(uint8_t, ucopy_u8, x) UNARY_OP(uint32_t, ucopy_u32, x) +UNARY_OP(int64_t, ucopy_i64, x) UNARY_OP(float, ucopy_f32, x) UNARY_OP(double, ucopy_f64, x) UNARY_OP(float, uneg_f32, -x)