mirror of
https://github.com/gpujs/gpu.js.git
synced 2025-12-08 20:35:56 +00:00
84 lines
1.7 KiB
JavaScript
84 lines
1.7 KiB
JavaScript
const { assert, skip, test, module: describe } = require('qunit');
|
|
const { GPU } = require('../../src');
|
|
|
|
describe('math object');
|
|
|
|
function sqrtABTest(mode) {
|
|
const gpu = new GPU({ mode });
|
|
const f = gpu.createKernel(function(a, b) {
|
|
return Math.sqrt(a[ this.thread.x ] * b[ this.thread.x ]);
|
|
}, {
|
|
output : [6]
|
|
});
|
|
|
|
assert.ok(f !== null, 'function generated test');
|
|
|
|
const a = [3, 4, 5, 6, 7, 8];
|
|
const b = [3, 4, 5, 6, 7, 8];
|
|
|
|
const res = f(a,b);
|
|
const exp = [3, 4, 5, 6, 7, 8];
|
|
|
|
assert.deepEqual(Array.from(res), exp);
|
|
gpu.destroy();
|
|
}
|
|
|
|
test('sqrtAB auto', () => {
|
|
sqrtABTest(null);
|
|
});
|
|
|
|
test('sqrtAB gpu', () => {
|
|
sqrtABTest('gpu');
|
|
});
|
|
|
|
(GPU.isWebGLSupported ? test : skip)('sqrtAB webgl', () => {
|
|
sqrtABTest('webgl');
|
|
});
|
|
|
|
(GPU.isWebGL2Supported ? test : skip)('sqrtAB webgl2', () => {
|
|
sqrtABTest('webgl2');
|
|
});
|
|
|
|
(GPU.isHeadlessGLSupported ? test : skip)('sqrtAB headlessgl', () => {
|
|
sqrtABTest('headlessgl');
|
|
});
|
|
|
|
test('sqrtAB cpu', () => {
|
|
sqrtABTest('cpu');
|
|
});
|
|
|
|
|
|
function mathRandom(mode) {
|
|
const gpu = new GPU({ mode });
|
|
const kernel = gpu.createKernel(function() {
|
|
return Math.random();
|
|
}, { output: [1] });
|
|
|
|
const result = kernel();
|
|
assert.ok(result[0] > 0 && result[0] < 1, `value was expected to be between o and 1, but was ${result[0]}`);
|
|
}
|
|
|
|
test('random auto', () => {
|
|
mathRandom();
|
|
});
|
|
|
|
test('random gpu', () => {
|
|
mathRandom('gpu');
|
|
});
|
|
|
|
(GPU.isWebGLSupported ? test : skip)('random webgl', () => {
|
|
mathRandom('webgl');
|
|
});
|
|
|
|
(GPU.isWebGL2Supported ? test : skip)('random webgl2', () => {
|
|
mathRandom('webgl2');
|
|
});
|
|
|
|
(GPU.isHeadlessGLSupported ? test : skip)('random headlessgl', () => {
|
|
mathRandom('headlessgl');
|
|
});
|
|
|
|
test('random cpu', () => {
|
|
mathRandom('cpu');
|
|
});
|