memtrace 0.8.2 → 0.8.3
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/installer/package.json +1 -1
- package/lib/cuda-ep.js +6 -1
- package/package.json +7 -7
package/installer/package.json
CHANGED
package/lib/cuda-ep.js
CHANGED
|
@@ -40,7 +40,12 @@ const { spawnSync } = require("child_process");
|
|
|
40
40
|
|
|
41
41
|
const CUDA_EP_ASSET = "memtrace-windows-x86_64-cuda-ep.zip";
|
|
42
42
|
const CUDA_EP_DLL = "onnxruntime_providers_cuda.dll";
|
|
43
|
-
|
|
43
|
+
// memtrace-public, NOT syncable-dev/memtrace: the build repo is private,
|
|
44
|
+
// so its release assets 404 for unauthenticated installers (v0.8.2
|
|
45
|
+
// shipped that way and the fetch silently no-opped). release.yml's
|
|
46
|
+
// mirror step attaches the CUDA EP zip + checksums.txt to the public
|
|
47
|
+
// release specifically for this URL.
|
|
48
|
+
const RELEASE_BASE_URL = "https://github.com/syncable-dev/memtrace-public/releases/download";
|
|
44
49
|
// Only the default AVX2 package. The noavx2 variant bundles a
|
|
45
50
|
// from-source onnxruntime.dll; pairing it with Microsoft's prebuilt
|
|
46
51
|
// CUDA EP is an untested ABI mix (and pre-Haswell CPU + modern NVIDIA
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memtrace",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "Code intelligence graph — MCP server + AI agent skills + visualization UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"fs-extra": "^11.0.0"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@memtrace/darwin-arm64": "0.8.
|
|
43
|
-
"@memtrace/linux-x64": "0.8.
|
|
44
|
-
"@memtrace/linux-arm64": "0.8.
|
|
45
|
-
"@memtrace/win32-x64": "0.8.
|
|
46
|
-
"@memtrace/linux-x64-noavx2": "0.8.
|
|
47
|
-
"@memtrace/win32-x64-noavx2": "0.8.
|
|
42
|
+
"@memtrace/darwin-arm64": "0.8.3",
|
|
43
|
+
"@memtrace/linux-x64": "0.8.3",
|
|
44
|
+
"@memtrace/linux-arm64": "0.8.3",
|
|
45
|
+
"@memtrace/win32-x64": "0.8.3",
|
|
46
|
+
"@memtrace/linux-x64-noavx2": "0.8.3",
|
|
47
|
+
"@memtrace/win32-x64-noavx2": "0.8.3"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=18"
|