gpu.js/test/features/ternary.js
Robert Plummer e9bdc31a18 fix: Examples file reference
fix: move `GLKernel.fixIntegerDivisionAccuracy` to `Kernel.fixIntegerDivisionAccuracy` as it has to do with typing
fix: FunctionTracer 'ConditionalExpression' needed `ast.test`
test: Add test for FunctionTracer 'ConditionalExpression' `ast.test` usage
fix: division type handling with `Kernel.fixIntegerDivisionAccuracy` true
test: Add test for division handling with and without `Kernel.fixIntegerDivisionAccuracy` true
2019-06-29 10:07:29 -04:00

79 lines
1.8 KiB
JavaScript

const { assert, skip, test, module: describe, only } = require('qunit');
const { GPU } = require('../../src');
describe('feature: Ternary');
function ternaryTest(mode) {
const gpu = new GPU({ mode });
function ternaryFunction(value) {
return (value > 1 ? 1 : 0);
}
const kernel = gpu.createKernel(ternaryFunction, { output: [1] });
const truthyResult = kernel(100);
const falseyResult = kernel(-100);
assert.equal(truthyResult[0], 1);
assert.equal(falseyResult[0], 0);
gpu.destroy();
}
test('auto', () => {
ternaryTest();
});
test('gpu', () => {
ternaryTest('gpu');
});
(GPU.isWebGLSupported ? test : skip)('webgl', () => {
ternaryTest('webgl');
});
(GPU.isWebGL2Supported ? test : skip)('webgl2', () => {
ternaryTest('webgl2');
});
(GPU.isHeadlessGLSupported ? test : skip)('headlessgl', () => {
ternaryTest('headlessgl');
});
test('cpu', () => {
ternaryTest('cpu');
});
function ternaryWithVariableUsage(mode) {
const gpu = new GPU({ mode });
const kernel = gpu.createKernel(function(value1) {
const value2 = value1 + 1;
return value2 > 10 ? 1 : 0;
}, { output: [1] });
assert.equal(kernel(9)[0], 0);
assert.equal(kernel(10)[0], 1);
gpu.destroy();
}
test('with variable usage auto', () => {
ternaryWithVariableUsage();
});
test('with variable usage gpu', () => {
ternaryWithVariableUsage('gpu');
});
(GPU.isWebGLSupported ? test : skip)('with variable usage webgl', () => {
ternaryWithVariableUsage('webgl');
});
(GPU.isWebGL2Supported ? test : skip)('with variable usage webgl2', () => {
ternaryWithVariableUsage('webgl2');
});
(GPU.isHeadlessGLSupported ? test : skip)('with variable usage headlessgl', () => {
ternaryWithVariableUsage('headlessgl');
});
test('with variable usage cpu', () => {
ternaryWithVariableUsage('cpu');
});