blob: 1df413a4175b92b34b2b008923c360ed05e35ebd [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
[[max_total_threads_per_threadgroup(1)]]
kernel void f() {
uint3 const a = uint3(1u, 2u, 3u);
uint3 const b = uint3(4u, 5u, 6u);
uint3 const r = (a << (b & uint3(31u)));
}