forked from gpujs/gpu.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunner.js
More file actions
40 lines (35 loc) · 836 Bytes
/
runner.js
File metadata and controls
40 lines (35 loc) · 836 Bytes
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
'use strict';
const utils = require('../../core/utils');
const RunnerBase = require('../runner-base');
const CPUKernel = require('./kernel');
const CPUFunctionBuilder = require('./function-builder');
module.exports = class CPURunner extends RunnerBase {
/**
* @constructor CPURunner
*
* @desc Instantiates a Runner instance for the kernel.
*
* @extends RunnerBase
*
* @param {Object} settings - Settings to instantiate properties in RunnerBase, with given values
*
*/
constructor(settings) {
super(new CPUFunctionBuilder(), settings);
this.Kernel = CPUKernel;
this.kernel = null;
}
/**
* @memberOf CPURunner#
* @function
* @name getMode()
*
* Return the current mode in which gpu.js is executing.
*
* @returns {String} The current mode; "cpu".
*
*/
getMode() {
return 'cpu';
}
};