@mlbottleneck/engine 0.4.0
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/LICENSE +21 -0
- package/README.md +121 -0
- package/localmaxxing-snapshot.json +1 -0
- package/mlbottleneck-engine.d.ts +167 -0
- package/mlbottleneck-engine.mjs +7802 -0
- package/mlbottleneck-engine.umd.js +7810 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mlbottleneck/engine",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Physics-based LLM inference planner: decode/prefill tokens per second, memory fit, multi-GPU strategy, and speculative-decoding gains for any model on any hardware, calibrated on community benchmarks.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"llm",
|
|
7
|
+
"inference",
|
|
8
|
+
"tokens-per-second",
|
|
9
|
+
"gpu",
|
|
10
|
+
"vram",
|
|
11
|
+
"llama.cpp",
|
|
12
|
+
"vllm",
|
|
13
|
+
"quantization",
|
|
14
|
+
"speculative-decoding",
|
|
15
|
+
"planner",
|
|
16
|
+
"benchmark"
|
|
17
|
+
],
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"author": "Steve Seguin (https://github.com/steveseguin)",
|
|
20
|
+
"homepage": "https://mlbottleneck.com",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/steveseguin/ml-bottleneck.git"
|
|
24
|
+
},
|
|
25
|
+
"bugs": "https://github.com/steveseguin/ml-bottleneck/issues",
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"main": "./mlbottleneck-engine.umd.js",
|
|
30
|
+
"module": "./mlbottleneck-engine.mjs",
|
|
31
|
+
"types": "./mlbottleneck-engine.d.ts",
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"types": "./mlbottleneck-engine.d.ts",
|
|
35
|
+
"import": "./mlbottleneck-engine.mjs",
|
|
36
|
+
"require": "./mlbottleneck-engine.umd.js"
|
|
37
|
+
},
|
|
38
|
+
"./snapshot": "./localmaxxing-snapshot.json"
|
|
39
|
+
},
|
|
40
|
+
"sideEffects": false,
|
|
41
|
+
"files": [
|
|
42
|
+
"mlbottleneck-engine.mjs",
|
|
43
|
+
"mlbottleneck-engine.umd.js",
|
|
44
|
+
"mlbottleneck-engine.d.ts",
|
|
45
|
+
"localmaxxing-snapshot.json",
|
|
46
|
+
"README.md",
|
|
47
|
+
"LICENSE"
|
|
48
|
+
]
|
|
49
|
+
}
|