blob: 7e04230a899df2f3d127488a6423126d9e3ca576 [file] [log] [blame]
float tint_bitcast_from_f16(vector<float16_t, 2> src) {
uint2 r = f32tof16(float2(src));
return asfloat(uint((r.x & 0xffff) | ((r.y & 0xffff) << 16)));
}
[numthreads(1, 1, 1)]
void f() {
vector<float16_t, 2> a = vector<float16_t, 2>(float16_t(1.0h), float16_t(2.0h));
float b = tint_bitcast_from_f16(a);
return;
}