From a5d3bec25d70f23da1e79cd7773981ff34593611 Mon Sep 17 00:00:00 2001 From: Yong He Date: Thu, 15 Sep 2022 20:37:45 -0700 Subject: Run simple compute kernel in gfx-smoke test. (#2400) --- source/slang/slang-emit-cuda.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'source/slang/slang-emit-cuda.cpp') diff --git a/source/slang/slang-emit-cuda.cpp b/source/slang/slang-emit-cuda.cpp index 7c712d2c5..cbeddcb13 100644 --- a/source/slang/slang-emit-cuda.cpp +++ b/source/slang/slang-emit-cuda.cpp @@ -34,6 +34,8 @@ static bool _isSingleNameBasicType(IROp op) case kIROp_UInt16Type: case kIROp_UIntType: case kIROp_UInt64Type: + case kIROp_IntPtrType: + case kIROp_UIntPtrType: { return false; } @@ -53,14 +55,18 @@ UnownedStringSlice CUDASourceEmitter::getBuiltinTypeName(IROp op) case kIROp_Int16Type: return UnownedStringSlice("short"); case kIROp_IntType: return UnownedStringSlice("int"); case kIROp_Int64Type: return UnownedStringSlice("longlong"); - case kIROp_IntPtrType: return UnownedStringSlice("intptr_t"); case kIROp_UInt8Type: return UnownedStringSlice("uchar"); case kIROp_UInt16Type: return UnownedStringSlice("ushort"); case kIROp_UIntType: return UnownedStringSlice("uint"); case kIROp_UInt64Type: return UnownedStringSlice("ulonglong"); - case kIROp_UIntPtrType: return UnownedStringSlice("uintptr_t"); - +#if SLANG_PTR_IS_64 + case kIROp_IntPtrType: return UnownedStringSlice("int64_t"); + case kIROp_UIntPtrType: return UnownedStringSlice("uint64_t"); +#else + case kIROp_IntPtrType: return UnownedStringSlice("int"); + case kIROp_UIntPtrType: return UnownedStringSlice("uint"); +#endif case kIROp_HalfType: { m_extensionTracker->requireBaseType(BaseType::Half); -- cgit v1.2.3