forked from gpujs/gpu.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgpu-methods.js
More file actions
91 lines (88 loc) · 2.49 KB
/
gpu-methods.js
File metadata and controls
91 lines (88 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
const { assert, test, skip, module: describe, only } = require('qunit');
const { GPU } = require('../../src');
describe('internal: GPU methods');
test('.createKernelMap() object map with settings', () => {
const gpu = new GPU();
let source = null;
let settings = null;
function bob() {}
function tom() {}
class MockKernel {
constructor(_source, _settings) {
source = _source;
settings = _settings;
this.context = 'context';
this.canvas = 'canvas';
this.subKernels = _settings.subKernels;
}
}
gpu.Kernel = MockKernel;
const subKernels = {
bobResult: bob,
tomResult: tom
};
const kernelSource = function() {};
const masterSettings = {};
const kernel = gpu.createKernelMap(subKernels, kernelSource, masterSettings);
assert.equal(source, kernelSource.toString());
assert.notEqual(settings, masterSettings);
assert.equal(gpu.canvas, 'canvas');
assert.equal(gpu.context, 'context');
assert.equal(settings.functions, gpu.functions);
assert.equal(settings.nativeFunctions, gpu.nativeFunctions);
assert.equal(settings.gpu, gpu);
assert.equal(settings.validate, true);
assert.deepEqual(kernel.subKernels, [
{
name: 'bob',
source: bob.toString(),
property: 'bobResult'
},
{
name: 'tom',
source: tom.toString(),
property: 'tomResult'
}
]);
});
test('.createKernelMap() array map with settings', () => {
const gpu = new GPU();
let source = null;
let settings = null;
function bob() {}
function tom() {}
class MockKernel {
constructor(_source, _settings) {
source = _source;
settings = _settings;
this.context = 'context';
this.canvas = 'canvas';
this.subKernels = _settings.subKernels;
}
}
gpu.Kernel = MockKernel;
const subKernels = [bob, tom];
const kernelSource = function() {};
const masterSettings = {};
const kernel = gpu.createKernelMap(subKernels, kernelSource, masterSettings);
assert.equal(source, kernelSource.toString());
assert.notEqual(settings, masterSettings);
assert.equal(gpu.canvas, 'canvas');
assert.equal(gpu.context, 'context');
assert.equal(settings.functions, gpu.functions);
assert.equal(settings.nativeFunctions, gpu.nativeFunctions);
assert.equal(settings.gpu, gpu);
assert.equal(settings.validate, true);
assert.deepEqual(kernel.subKernels, [
{
name: 'bob',
source: bob.toString(),
property: 0
},
{
name: 'tom',
source: tom.toString(),
property: 1
}
]);
});