aboutsummaryrefslogtreecommitdiffhomepage
path: root/ptx/src/test/spirv_run/sign_extend.ptx
blob: d3af0d57154143d2cc10227294f552f405a53517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.version 6.5
.target sm_30
.address_size 64

.visible .entry sign_extend(
	.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.s16          temp, [in_addr];
    st.s32          [out_addr], temp;
	ret;
}