/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test
tests/insert-2.ispc
13 строк
361 B
Arina Neshlyaeva
Disable insert-2 test on tgllp/dg2 due to double type usage
13 окт 2022, 09:23
13 окт 2022, 09:23
02ed097
Код
Авторство
О чём код?
#include "../test_static.isph" // rule: skip on cpu=tgllp // rule: skip on cpu=dg2 task void f_f(uniform float RET[], uniform float aFOO[]) { double a; for (uniform int i = 0; i < programCount; ++i) a = insert(a, i, (double)i+10); RET[programIndex] = a; } task void result(uniform float RET[]) { RET[programIndex] = programIndex+10; }