mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-20 10:25:28 +00:00
tint: Add support for atomic ops to spirv reader
The following operations are supported: OpAtomicLoad OpAtomicStore OpAtomicExchange OpAtomicCompareExchange OpAtomicCompareExchangeWeak OpAtomicIIncrement OpAtomicIDecrement OpAtomicIAdd OpAtomicISub OpAtomicSMin OpAtomicUMin OpAtomicSMax OpAtomicUMax OpAtomicAnd OpAtomicOr OpAtomicXor These are not, but may be supported in the future: OpAtomicFlagTestAndSet OpAtomicFlagClear OpAtomicFMinEXT OpAtomicFMaxEXT OpAtomicFAddEXT Bug: tint:1441 Change-Id: Ifd53643b38d43664905a0dddfca609add4914670 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/94121 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Antonio Maiorano <amaiorano@google.com>
This commit is contained in:
committed by
Dawn LUCI CQ
parent
57810d81d5
commit
268d7b8357
@@ -0,0 +1,38 @@
|
||||
type Arr = array<u32, 4u>;
|
||||
|
||||
var<private> local_invocation_index_1 : u32;
|
||||
|
||||
var<workgroup> wg : array<atomic<u32>, 4u>;
|
||||
|
||||
fn compute_main_inner(local_invocation_index : u32) {
|
||||
var idx : u32 = 0u;
|
||||
idx = local_invocation_index;
|
||||
loop {
|
||||
let x_21 : u32 = idx;
|
||||
if (!((x_21 < 4u))) {
|
||||
break;
|
||||
}
|
||||
let x_26 : u32 = idx;
|
||||
atomicStore(&(wg[x_26]), 0u);
|
||||
|
||||
continuing {
|
||||
let x_33 : u32 = idx;
|
||||
idx = (x_33 + 1u);
|
||||
}
|
||||
}
|
||||
workgroupBarrier();
|
||||
atomicStore(&(wg[1i]), 1u);
|
||||
return;
|
||||
}
|
||||
|
||||
fn compute_main_1() {
|
||||
let x_47 : u32 = local_invocation_index_1;
|
||||
compute_main_inner(x_47);
|
||||
return;
|
||||
}
|
||||
|
||||
@compute @workgroup_size(1i, 1i, 1i)
|
||||
fn compute_main(@builtin(local_invocation_index) local_invocation_index_1_param : u32) {
|
||||
local_invocation_index_1 = local_invocation_index_1_param;
|
||||
compute_main_1();
|
||||
}
|
||||
Reference in New Issue
Block a user