aboutsummaryrefslogtreecommitdiffhomepage
path: root/ptx/src/test/spirv_run/neg.ptx
diff options
context:
space:
mode:
authorAndrzej Janik <[email protected]>2020-11-01 14:58:44 +0100
committerAndrzej Janik <[email protected]>2020-11-01 14:58:44 +0100
commite5a53ed5d30fad3d8ebae6d72ead1564d2b97275 (patch)
tree074d797ffdbafb530d11b592efefe84c277a5bea /ptx/src/test/spirv_run/neg.ptx
parentb7d61baf37be52c7b2e5ea26be045470642f9a61 (diff)
downloadZLUDA-e5a53ed5d30fad3d8ebae6d72ead1564d2b97275.tar.gz
ZLUDA-e5a53ed5d30fad3d8ebae6d72ead1564d2b97275.zip
Implement neg instruction
Diffstat (limited to 'ptx/src/test/spirv_run/neg.ptx')
-rw-r--r--ptx/src/test/spirv_run/neg.ptx21
1 files changed, 21 insertions, 0 deletions
diff --git a/ptx/src/test/spirv_run/neg.ptx b/ptx/src/test/spirv_run/neg.ptx
new file mode 100644
index 0000000..60fe162
--- /dev/null
+++ b/ptx/src/test/spirv_run/neg.ptx
@@ -0,0 +1,21 @@
+.version 6.5
+.target sm_30
+.address_size 64
+
+.visible .entry neg(
+ .param .u64 input,
+ .param .u64 output
+)
+{
+ .reg .u64 in_addr;
+ .reg .u64 out_addr;
+ .reg .s32 temp1;
+
+ ld.param.u64 in_addr, [input];
+ ld.param.u64 out_addr, [output];
+
+ ld.s32 temp1, [in_addr];
+ neg.s32 temp1, temp1;
+ st.s32 [out_addr], temp1;
+ ret;
+}