aboutsummaryrefslogtreecommitdiffhomepage
path: root/ptx/src/test/spirv_run/vector_extract.ptx
blob: 111f7c0a153db78f4ce6f317a059757fc8cf19e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.version 6.5
.target sm_30
.address_size 64

.visible .entry vector_extract(
    .param .u64 input_p,
    .param .u64 output_p
)
{
    .reg .u64           in_addr;
    .reg .u64           out_addr;
    .reg .u16           temp1;
    .reg .u16           temp2;
    .reg .u16           temp3;
    .reg .u16           temp4;
    .reg .v4.u16        foo;

	ld.param.u64    in_addr, [input_p];
    ld.param.u64    out_addr, [output_p];

    ld.global.v4.u8     {temp1, temp2, temp3, temp4}, [in_addr];
    mov.v4.u16          foo, {temp2, temp3, temp4, temp1};
    mov.v4.u16          {temp3, temp4, temp1, temp2}, foo;
    mov.v4.u16          {temp4, temp1, temp2, temp3}, {temp3, temp4, temp1, temp2};
    st.global.v4.u8     [out_addr], {temp1, temp2, temp3, temp4};
    ret;
}