blob: de028c7530d14ded949eb96d4d1fcb0119d3d38b (
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
|
.version 6.5
.target sm_30
.address_size 64
.visible .entry b64tof64(
.param .u64 input,
.param .u64 output
)
{
.reg .f64 in_addr_f;
.reg .b64 in_addr;
.reg .u64 out_addr;
.reg.u64 temp;
ld.param.f64 in_addr_f, [input];
ld.param.u64 out_addr, [output];
mov.b64 in_addr, in_addr_f;
ld.u64 temp, [in_addr];
st.u64 [out_addr], temp;
ret;
}
|