Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.24.0/tests/exclusive-scan-add-4.ispc
2025-05-18 13:04:45 +08:00

16 lines
478 B
Plaintext

#include "../test_static.isph"
task void f_f(uniform float RET[], uniform float aFOO[]) {
RET[programIndex] = -1;
float a = aFOO[programIndex];
if (a <= 2)
RET[programIndex] = exclusive_scan_add(a);
}
task void result(uniform float RET[]) {
uniform int result[] = { 0, 1, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0 };
RET[programIndex] = -1;
if (programIndex <= 1)
RET[programIndex] = result[programIndex];
}