blob: 3f3b4a1fd4560e50ac834f786bb09f3e9e35e0b8 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
half const a = 4.0h;
half3 const b = half3(1.0h, 2.0h, 3.0h);
half3 const r = (a + b);
}