This checkin provides the standard set of atomic operations and a memory barrier in the ispc standard library. Both signed and unsigned 32- and 64-bit integer types are supported.
15 lines
347 B
Plaintext
15 lines
347 B
Plaintext
|
|
export uniform int width() { return programCount; }
|
|
|
|
uniform int64 s = 0;
|
|
|
|
export void f_f(uniform float RET[], uniform float aFOO[]) {
|
|
float a = aFOO[programIndex];
|
|
float b = atomic_add_global(s, 1);
|
|
RET[programIndex] = reduce_add(b);
|
|
}
|
|
|
|
export void result(uniform float RET[]) {
|
|
RET[programIndex] = reduce_add(programIndex);
|
|
}
|