blob: 4a755ead35a5436f1f564a4857c8f81bb3579568 [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
const vector<float16_t, 3> a = vector<float16_t, 3>(float16_t(1.0h), float16_t(2.0h), float16_t(3.0h));
const float16_t b = float16_t(0.0h);
const vector<float16_t, 3> r = (a / b);
return;
}