diff options
author | Andrzej Janik <[email protected]> | 2021-09-16 01:25:09 +0200 |
---|---|---|
committer | Andrzej Janik <[email protected]> | 2021-09-16 01:25:09 +0200 |
commit | ca0d8ec666e499ec1a71132757acba407c3ba53b (patch) | |
tree | 161817205dae53c71ab6985b7f5c888cbf796c8a /ptx/src/test/spirv_run/membar.ptx | |
parent | 467782b1d00da5f519840435aa417163fcb1a128 (diff) | |
download | ZLUDA-ca0d8ec666e499ec1a71132757acba407c3ba53b.tar.gz ZLUDA-ca0d8ec666e499ec1a71132757acba407c3ba53b.zip |
Add missing vray instructions
Diffstat (limited to 'ptx/src/test/spirv_run/membar.ptx')
-rw-r--r-- | ptx/src/test/spirv_run/membar.ptx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ptx/src/test/spirv_run/membar.ptx b/ptx/src/test/spirv_run/membar.ptx new file mode 100644 index 0000000..01aa9f2 --- /dev/null +++ b/ptx/src/test/spirv_run/membar.ptx @@ -0,0 +1,21 @@ +.version 6.5
+.target sm_30
+.address_size 64
+
+.visible .entry membar(
+ .param .u64 input,
+ .param .u64 output
+)
+{
+ .reg .u64 in_addr;
+ .reg .u64 out_addr;
+ .reg .s32 temp;
+
+ ld.param.u64 in_addr, [input];
+ ld.param.u64 out_addr, [output];
+
+ ld.u32 temp, [in_addr];
+ membar.sys;
+ st.s32 [out_addr], temp;
+ ret;
+}
|