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

.visible .entry constant_f32(
	.param .u64 input,
	.param .u64 output
)
{
	.reg .u64 	    in_addr;
    .reg .u64 	    out_addr;
    .reg .f32 	    temp;

	ld.param.u64 	in_addr, [input];
    ld.param.u64 	out_addr, [output];

    ld.f32          temp, [in_addr];
	mul.f32		    temp, temp, 0f3f000000; // 0.5
    st.f32          [out_addr], temp;
	ret;
}