/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test
tests/pmulus-i64.ispc
26 строк
983 B
Arina Neshlyaeva
Adapt test system to redefined meaning of "task" functions on GPU.
13 авг 2021, 08:32
13 авг 2021, 08:32
2aa444f
Код
Авторство
О чём код?
#include "../test_static.isph" task void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) { uniform unsigned int64 a_max = 0xFFFFFFFFFFFFFFFF, a_min = 0; // max and min unsigned int64 if (programIndex % 3 == 0) { RET[programIndex] = saturating_mul(a_max, (uniform unsigned int64) b); } else if (programIndex % 3 == 1) { RET[programIndex] = saturating_mul(a_min, (uniform unsigned int64) -b); } else { RET[programIndex] = saturating_mul((uniform unsigned int64) b, (uniform unsigned int64) b); } } task void result(uniform float RET[]) { if (programIndex % 3 == 0) { RET[programIndex] = (uniform unsigned int64) 0xFFFFFFFFFFFFFFFF; // max unsigned int64 } else if (programIndex % 3 == 1) { RET[programIndex] = (uniform unsigned int64) 0; // min unsigned int64 } else { RET[programIndex] = (uniform unsigned int64) 25; } }