blob: ccdcafc88e964f93b99b27ae69e0d4b1d91c958a [file] [log] [blame]
vector<float16_t, 2> tint_bitcast_to_f16(uint src) {
uint v = src;
float t_low = f16tof32((v & 65535u));
float t_high = f16tof32(((v >> 16u) & 65535u));
float16_t v_1 = float16_t(t_low);
return vector<float16_t, 2>(v_1, float16_t(t_high));
}
[numthreads(1, 1, 1)]
void f() {
uint a = 1073757184u;
vector<float16_t, 2> b = tint_bitcast_to_f16(a);
}