From 11d9557ab9a1730346585c5c92f974d06b32a619 Mon Sep 17 00:00:00 2001 From: "Ahn, Dongkyun" Date: Tue, 31 May 2022 18:02:16 -0700 Subject: [PATCH] [SYCL][ESIMD][EMU] Template argument fix (uint->int) Missing changes in PR#6099 for Windows target --- .../ext/intel/experimental/esimd/detail/memory_intrin.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sycl/include/sycl/ext/intel/experimental/esimd/detail/memory_intrin.hpp b/sycl/include/sycl/ext/intel/experimental/esimd/detail/memory_intrin.hpp index 8669f3ba0600f..9abf8593ee81a 100644 --- a/sycl/include/sycl/ext/intel/experimental/esimd/detail/memory_intrin.hpp +++ b/sycl/include/sycl/ext/intel/experimental/esimd/detail/memory_intrin.hpp @@ -426,7 +426,7 @@ void __esimd_emu_lsc_offset_write( /// Generic helper function of 2D Block Read supporting both 2d-load /// and raw_send -template +template __ESIMD_DNS::vector_type_t __esimd_emu_read_2d(__ESIMD_DNS::simd_mask_storage_t Pred, uintptr_t Ptr, unsigned SurfaceWidth, unsigned SurfaceHeight, @@ -535,7 +535,7 @@ __esimd_emu_read_2d(__ESIMD_DNS::simd_mask_storage_t Pred, uintptr_t Ptr, /// Generic helper function of 2D Block Write supporting both /// 2d-write and raw_send -template +template void __esimd_emu_write_2d(__ESIMD_DNS::simd_mask_storage_t Pred, uintptr_t Ptr, unsigned SurfaceWidth, unsigned SurfaceHeight, unsigned SurfacePitch, int X,