@plasius/gpu-worker 0.1.9 → 0.1.10
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/CHANGELOG.md +23 -1
- package/README.md +8 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -20,6 +20,27 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
20
20
|
- **Security**
|
|
21
21
|
- (placeholder)
|
|
22
22
|
|
|
23
|
+
## [0.1.10] - 2026-03-14
|
|
24
|
+
|
|
25
|
+
- **Added**
|
|
26
|
+
- (placeholder)
|
|
27
|
+
|
|
28
|
+
- **Changed**
|
|
29
|
+
- DAG queue guidance now treats package manifests as explicit multi-root DAG
|
|
30
|
+
node definitions with priority-lane mapping, rather than loose dependency
|
|
31
|
+
hints.
|
|
32
|
+
- Raised the minimum `@plasius/gpu-lock-free-queue` dependency to `^0.2.14`
|
|
33
|
+
so published installs resolve the new DAG graph metadata through npm.
|
|
34
|
+
- Updated GitHub Actions workflows to run JavaScript actions on Node 24,
|
|
35
|
+
refreshed core workflow action versions, and switched Codecov uploads to
|
|
36
|
+
the Codecov CLI.
|
|
37
|
+
|
|
38
|
+
- **Fixed**
|
|
39
|
+
- (placeholder)
|
|
40
|
+
|
|
41
|
+
- **Security**
|
|
42
|
+
- (placeholder)
|
|
43
|
+
|
|
23
44
|
## [0.1.9] - 2026-03-13
|
|
24
45
|
|
|
25
46
|
- **Added**
|
|
@@ -189,7 +210,7 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
189
210
|
|
|
190
211
|
---
|
|
191
212
|
|
|
192
|
-
[Unreleased]: https://github.com/Plasius-LTD/gpu-worker/compare/v0.1.
|
|
213
|
+
[Unreleased]: https://github.com/Plasius-LTD/gpu-worker/compare/v0.1.10...HEAD
|
|
193
214
|
[0.1.0-beta.1]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.0-beta.1
|
|
194
215
|
[0.1.0]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.0
|
|
195
216
|
[0.1.2]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.2
|
|
@@ -211,3 +232,4 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
211
232
|
[0.1.4]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.4
|
|
212
233
|
[0.1.8]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.8
|
|
213
234
|
[0.1.9]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.9
|
|
235
|
+
[0.1.10]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.10
|
package/README.md
CHANGED
|
@@ -176,6 +176,14 @@ budgets or decide priorities itself. Instead it exposes the queue mode and the
|
|
|
176
176
|
completion hook needed by package manifests and `@plasius/gpu-performance` to
|
|
177
177
|
coordinate DAG-shaped workloads.
|
|
178
178
|
|
|
179
|
+
Package manifests should be treated as explicit DAG node definitions, not just
|
|
180
|
+
loose hints. In practice that means:
|
|
181
|
+
|
|
182
|
+
- multiple roots are allowed and expected,
|
|
183
|
+
- manifest labels act as dependency ids,
|
|
184
|
+
- priorities map to ready-queue lanes,
|
|
185
|
+
- downstream jobs are unlocked only when every upstream dependency completes.
|
|
186
|
+
|
|
179
187
|
## Package Integration Model
|
|
180
188
|
|
|
181
189
|
`@plasius/gpu-worker` is the preferred execution plane for discrete GPU work
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/gpu-worker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "WebGPU worker runtime with a lock-free job queue for WGSL workloads.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"author": "Plasius LTD <development@plasius.co.uk>",
|
|
56
56
|
"license": "Apache-2.0",
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@plasius/gpu-lock-free-queue": "^0.2.
|
|
58
|
+
"@plasius/gpu-lock-free-queue": "^0.2.14"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@eslint/js": "^9.39.1",
|