blob: de898df6f795d360c508a499ccae978a6278c5c0 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
[[max_total_threads_per_threadgroup(1)]]
kernel void f() {
bool3 const a = bool3(true, true, false);
bool3 const b = bool3(true, false, true);
uint3 const v = uint3(a);
bool3 const r = bool3((v & uint3(b)));
}