blob: 45660aefc8e84ab4e1e6fcd7f11fa61b5fc1b85f [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
half const a = 4.0h;
half3 const b = half3(0.0h, 2.0h, 0.0h);
half3 const r = (a / b);
return;
}