blob: 22851f825810b409af5cfceef5cc9c15648795f9 [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
vector<float16_t, 3> a = vector<float16_t, 3>(float16_t(1.0h), float16_t(2.0h), float16_t(3.0h));
vector<float16_t, 3> b = vector<float16_t, 3>(float16_t(4.0h), float16_t(5.0h), float16_t(6.0h));
vector<float16_t, 3> r = (a * b);
return;
}