From 31ec5d5cb037dbf5861397176da40792fec65da7 Mon Sep 17 00:00:00 2001 From: BertanDogancay Date: Sun, 28 Jan 2024 19:55:19 -0800 Subject: [PATCH] correct data type --- src/device/op128.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device/op128.h b/src/device/op128.h index 4f1a6a10c3..e5e69e28c5 100644 --- a/src/device/op128.h +++ b/src/device/op128.h @@ -249,7 +249,7 @@ template<> __device__ __forceinline__ void st_relaxed_gpu_global<0>(uintptr_t ad // Single-byte types use 4-byte registers since there is no 1-byte register // character for asm blocks. See https://docs.nvidia.com/cuda/inline-ptx-assembly/index.html#constraints -DEFINE_ld_st__size(1, uint32_t, b8, r) +DEFINE_ld_st__size(1, uint8_t, b8, r) DEFINE_ld_st__size(2, uint16_t, b16, h) DEFINE_ld_st__size(4, uint32_t, b32, r) DEFINE_ld_st__size(8, uint64_t, b64, l)