From fcfd764fbee0525917b127f4cb84300b7ffe6698 Mon Sep 17 00:00:00 2001 From: Mehdi Goli Date: Fri, 26 Apr 2024 17:49:34 +0100 Subject: [PATCH] Update include/cute/arch/copy_xe.hpp Co-authored-by: Atharva Dubey --- include/cute/arch/copy_xe.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/cute/arch/copy_xe.hpp b/include/cute/arch/copy_xe.hpp index c34a5b6516..7e81ce85da 100644 --- a/include/cute/arch/copy_xe.hpp +++ b/include/cute/arch/copy_xe.hpp @@ -129,11 +129,11 @@ struct XE_2D_U16x8x16x4x2_LD_N int height, int pitch, int2_ coord, T *dst) { #if defined(ARCH_PVC_ACTIVATED) - static_assert(sizeof(T) == 2, "Expected T to have size 2"); - *(ushort64 *)dst = __builtin_IB_subgroup_block_read_flat_u16_m32k16v2( - long(baseoffset), width - 1, height - 1, pitch - 1, coord); + static_assert(sizeof(T) == 2, "Expected T to have size 2"); + *(ushort64 *)dst = __builtin_IB_subgroup_block_read_flat_u16_m32k16v2( + long(baseoffset), width - 1, height - 1, pitch - 1, coord); #else - CUTE_INVALID_CONTROL_PATH("Trying to use block loads on non-PVC hardware") + CUTE_INVALID_CONTROL_PATH("Trying to use block loads on non-PVC hardware") #endif } };