dcp-worker 3.3.15 → 3.3.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -9
- package/bin/dcp-worker +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,19 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
This is the official DCP Worker program for the Distributive Compute Platform.
|
|
4
4
|
|
|
5
|
-
This package implements a DCP Worker which can be
|
|
5
|
+
This package implements a DCP Worker which can be executed interactively, or a as system service, using
|
|
6
6
|
Node.js to communicate with the scheduler and control the DCP Evaluator.
|
|
7
7
|
|
|
8
8
|
A companion program, the DCP Evaluator, is required to use this worker. When you install the DCP Worker
|
|
9
9
|
with your system's package manager, the installer will automatically install the DCP Evaluator as
|
|
10
|
-
`dcp-evaluator-v8` or `dcp-evaluator`. The DCP Evaluator is a secure sandboxing tool which uses
|
|
11
|
-
and
|
|
12
|
-
|
|
13
|
-
You can find a complete package for Linux, including Evaluator binaries at https://
|
|
14
|
-
|
|
15
|
-
who interested in porting the Evaluator to your own platform, please contact us and we will
|
|
16
|
-
grant you early access to the MIT-licensed source code. The build is CMake with GN and largely
|
|
17
|
-
based around V8.
|
|
10
|
+
`dcp-evaluator-v8` or `dcp-evaluator`. The DCP Evaluator is a secure sandboxing tool which uses
|
|
11
|
+
Google's V8 JavaScript engine and Google's Dawn WebGPU implementation for secure execution of JavaScript, WebAssembly, and WebGPU code.
|
|
12
|
+
|
|
13
|
+
You can find a complete package for Linux, including Evaluator binaries at https://gitlab.com/Distributed-Compute-Protocol/dcp-native/-/releases.
|
|
14
|
+
The build is CMake with GN and largely based around V8.
|
|
18
15
|
|
|
19
16
|
This package is also used for DCP LocalExec, a local debugging tool for developers using DCP Client.
|
|
20
17
|
|
package/bin/dcp-worker
CHANGED
|
@@ -545,7 +545,7 @@ z */
|
|
|
545
545
|
console.throb('log', ' ! Waiting for dcp-evaluator to start...');
|
|
546
546
|
for (let i=0; !webgpuInfo; i++)
|
|
547
547
|
{
|
|
548
|
-
webgpuInfo = await require('../lib/webgpu-info').checkWebGPU();
|
|
548
|
+
webgpuInfo = await require('../lib/webgpu-info').checkWebGPU(sawOptions);
|
|
549
549
|
if (webgpuInfo)
|
|
550
550
|
break;
|
|
551
551
|
console.throb();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dcp-worker",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.18",
|
|
4
4
|
"description": "Node.js Worker for Distributive Compute Platform",
|
|
5
5
|
"main": "bin/dcp-worker",
|
|
6
6
|
"keywords": [
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"blessed": "^0.1.81",
|
|
41
41
|
"blessed-contrib": "4.11.0",
|
|
42
42
|
"chalk": "^4.1.0",
|
|
43
|
-
"dcp-client": "^4.4.
|
|
43
|
+
"dcp-client": "^4.4.23",
|
|
44
44
|
"kvin": "^1.2.7",
|
|
45
45
|
"posix-getopt": "^1.2.1",
|
|
46
46
|
"semver": "^7.3.8",
|