Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.24.0/tests/cfor-c-test-108.ispc
2025-05-18 13:04:45 +08:00

18 lines
465 B
Plaintext

#include "../test_static.isph"
task void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
#pragma ignore warning(perf)
float a = aFOO[programIndex&0x3];
int i, j=0;
cfor (i=a; i < 10; ++i) {
j += sqrt((a / 3.f) * (1.f / (i+2)));
if (i >= 5) continue;
j += sqrt(((a+2) / 3.f) * (1.f / (i+3)));
}
RET[programIndex] = (float)j;
}
task void result(uniform float RET[]) {
RET[programIndex] = 0;
}