blob: 091f009e140354a7270176997de078edc249cc4d [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
float const a = 4.0f;
float3 const b = float3(1.0f, 2.0f, 3.0f);
float3 const r = (a / b);
}