diff options
Diffstat (limited to 'ptx/src/test/spirv_run/shl_link_hack.ptx')
-rw-r--r-- | ptx/src/test/spirv_run/shl_link_hack.ptx | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/ptx/src/test/spirv_run/shl_link_hack.ptx b/ptx/src/test/spirv_run/shl_link_hack.ptx deleted file mode 100644 index a32555c..0000000 --- a/ptx/src/test/spirv_run/shl_link_hack.ptx +++ /dev/null @@ -1,30 +0,0 @@ -// HACK ALERT
-// This test is for testing workaround for a bug in IGC where linking fails
-// if there is shl/shr with different width of value and shift
-
-.version 6.5
-.target sm_30
-.address_size 64
-
-.visible .entry shl_link_hack(
- .param .u64 input,
- .param .u64 output
-)
-{
- .reg .u64 in_addr;
- .reg .u64 out_addr;
- .reg .u64 temp;
- .reg .u64 temp2;
-
- ld.param.u64 in_addr, [input];
- ld.param.u64 out_addr, [output];
-
- // Here only to trigger linking
- .reg .u32 unused;
- atom.inc.u32 unused, [out_addr], 2000000;
-
- ld.u64 temp, [in_addr];
- shl.b64 temp2, temp, 2;
- st.u64 [out_addr], temp2;
- ret;
-}
|