From 95de67918af20a340dd30f4bb83f3205d7dfbb19 Mon Sep 17 00:00:00 2001 From: PietroGhg Date: Wed, 2 Oct 2024 16:20:28 +0100 Subject: [PATCH] Add fp16 overload for shuffle --- libdevice/nativecpu_utils.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libdevice/nativecpu_utils.cpp b/libdevice/nativecpu_utils.cpp index 404a6bff27f85..8dc2807539653 100644 --- a/libdevice/nativecpu_utils.cpp +++ b/libdevice/nativecpu_utils.cpp @@ -295,6 +295,7 @@ DefShuffleINTEL_All(int8_t, i8, int8_t) DefShuffleINTEL_All(uint8_t, i8, int8_t) DefShuffleINTEL_All(double, f64, double) DefShuffleINTEL_All(float, f32, float) +DefShuffleINTEL_All(_Float16, f16, _Float16) // Vector versions of shuffle are generated by the FixABIBuiltinsSYCLNativeCPU pass