blob: a3dcb47c009982b7c26d0d9587c6e049359ccb65 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void workgroupBarrier_a17f7f() {
threadgroup_barrier(mem_flags::mem_threadgroup);
}
kernel void compute_main() {
workgroupBarrier_a17f7f();
return;
}