• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#include <metal_stdlib>
2#include <simd/simd.h>
3#ifdef __clang__
4#pragma clang diagnostic ignored "-Wall"
5#endif
6using namespace metal;
7struct Inputs {
8};
9kernel void computeMain() {
10    Inputs _in = {  };
11    threadgroup_barrier(mem_flags::mem_threadgroup);
12    threadgroup_barrier(mem_flags::mem_device);
13    return;
14}
15