summaryrefslogtreecommitdiffhomepage
path: root/ptx/src/test/spirv_run/clz.ptx
diff options
context:
space:
mode:
Diffstat (limited to 'ptx/src/test/spirv_run/clz.ptx')
-rw-r--r--ptx/src/test/spirv_run/clz.ptx21
1 files changed, 21 insertions, 0 deletions
diff --git a/ptx/src/test/spirv_run/clz.ptx b/ptx/src/test/spirv_run/clz.ptx
new file mode 100644
index 0000000..b475b90
--- /dev/null
+++ b/ptx/src/test/spirv_run/clz.ptx
@@ -0,0 +1,21 @@
+.version 6.5
+.target sm_30
+.address_size 64
+
+.visible .entry clz(
+ .param .u64 input,
+ .param .u64 output
+)
+{
+ .reg .u64 in_addr;
+ .reg .u64 out_addr;
+ .reg .b32 temp;
+
+ ld.param.u64 in_addr, [input];
+ ld.param.u64 out_addr, [output];
+
+ ld.b32 temp, [in_addr];
+ clz.b32 temp, temp;
+ st.b32 [out_addr], temp;
+ ret;
+}