aboutsummaryrefslogtreecommitdiffhomepage
path: root/ptx/src/test/spirv_run/mov_address.spvtxt
diff options
context:
space:
mode:
authorAndrzej Janik <[email protected]>2024-10-16 03:15:48 +0200
committerGitHub <[email protected]>2024-10-16 03:15:48 +0200
commit3870a96592c6a93d3a68391f6cbaecd9c7a2bc97 (patch)
tree77faf858cfa48c618e18f058046165af949e3929 /ptx/src/test/spirv_run/mov_address.spvtxt
parent1a63ef62b7ec47e5d55c1437641169a60f225eae (diff)
downloadZLUDA-3870a96592c6a93d3a68391f6cbaecd9c7a2bc97.tar.gz
ZLUDA-3870a96592c6a93d3a68391f6cbaecd9c7a2bc97.zip
Re-enable all failing PTX tests (#277)
Additionally remove unused compilation paths
Diffstat (limited to 'ptx/src/test/spirv_run/mov_address.spvtxt')
-rw-r--r--ptx/src/test/spirv_run/mov_address.spvtxt33
1 files changed, 0 insertions, 33 deletions
diff --git a/ptx/src/test/spirv_run/mov_address.spvtxt b/ptx/src/test/spirv_run/mov_address.spvtxt
deleted file mode 100644
index 26ae21f..0000000
--- a/ptx/src/test/spirv_run/mov_address.spvtxt
+++ /dev/null
@@ -1,33 +0,0 @@
- OpCapability GenericPointer
- OpCapability Linkage
- OpCapability Addresses
- OpCapability Kernel
- OpCapability Int64
- OpCapability Int8
- %12 = OpExtInstImport "OpenCL.std"
- OpMemoryModel Physical64 OpenCL
- OpEntryPoint Kernel %1 "mov_address"
- %void = OpTypeVoid
- %ulong = OpTypeInt 64 0
- %15 = OpTypeFunction %void %ulong %ulong
-%_ptr_Function_ulong = OpTypePointer Function %ulong
- %uchar = OpTypeInt 8 0
- %uint = OpTypeInt 32 0
- %uint_8 = OpConstant %uint 8
-%_arr_uchar_uint_8 = OpTypeArray %uchar %uint_8
-%_ptr_Function__arr_uchar_uint_8 = OpTypePointer Function %_arr_uchar_uint_8
- %1 = OpFunction %void None %15
- %6 = OpFunctionParameter %ulong
- %7 = OpFunctionParameter %ulong
- %10 = OpLabel
- %2 = OpVariable %_ptr_Function_ulong Function
- %3 = OpVariable %_ptr_Function_ulong Function
- %4 = OpVariable %_ptr_Function__arr_uchar_uint_8 Function
- %5 = OpVariable %_ptr_Function_ulong Function
- OpStore %2 %6
- OpStore %3 %7
- %9 = OpConvertPtrToU %ulong %4
- %8 = OpCopyObject %ulong %9
- OpStore %5 %8
- OpReturn
- OpFunctionEnd