Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

8 lines
125 B
Plaintext

//; RUN: %{ispc} %s
typedef float<2> float2;
float2 BitonicMergeKernel(float2 &b) {
float2 bs = b.xy;
return bs;
}