blob: b97ab290a879bbd0009cea90d443339b00e09e9d [file] [log] [blame]
int tint_bitcast_from_f16(vector<float16_t, 2> src) {
uint2 r = f32tof16(float2(src));
return asint(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));
int b = tint_bitcast_from_f16(a);
return;
}