ridgepoint 0.0.0__tar.gz

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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Isk4R1oT
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,44 @@
1
+ Metadata-Version: 2.4
2
+ Name: ridgepoint
3
+ Version: 0.0.0
4
+ Summary: LLM inference sizing: engine-aware VRAM capacity, KV cache, and roofline intervals. Placeholder — under active development.
5
+ Author: Iskariot
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/Isk4R1oT/ridgepoint
8
+ Project-URL: Repository, https://github.com/Isk4R1oT/ridgepoint
9
+ Keywords: llm,inference,vram,kv-cache,roofline,gpu,sizing,vllm
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Dynamic: license-file
14
+
15
+ # ridgepoint
16
+
17
+ **LLM inference sizing that models the engine, not just the weights.**
18
+
19
+ `ridgepoint` answers the question every VRAM calculator gets wrong: *after your serving
20
+ engine (vLLM, SGLang, …) grabs its memory pool, how many concurrent tokens of KV cache
21
+ actually fit — and where does throughput land on the latency/throughput frontier?*
22
+
23
+ The name is the **ridge point** of the roofline model: the arithmetic intensity where
24
+ decode stops being memory-bandwidth-bound. It's the single number this tool reasons about.
25
+
26
+ > 🚧 **Early development.** This `0.0.0` release reserves the name. v0 (Rust core + Python
27
+ > bindings via PyO3/maturin, one code path for both a CLI and `pip install ridgepoint`) is
28
+ > in progress.
29
+
30
+ ## Why another calculator?
31
+
32
+ Most "will it fit?" tools compute `weights + KV < VRAM`. That is the wrong model for paged
33
+ engines: vLLM pre-reserves `gpu_memory_utilization × VRAM` (default 90%) at startup and
34
+ pages KV into that pool. ridgepoint models what actually decides the answer:
35
+
36
+ - **Engine-aware capacity** — usable KV pool *after* the pre-grab → max concurrent tokens.
37
+ - **Intervals, not points** — throughput sits on a Pareto frontier set by your latency budget.
38
+ - **MLA vs GQA KV geometry** — DeepSeek-style MLA is ~50–100× smaller than the GQA formula predicts.
39
+ - **Real quant bpw** — Q4_K_M is ~4.8 bits/weight, not the label's 4.5.
40
+ - **OOM honesty** — never silently under-predict memory.
41
+
42
+ ## License
43
+
44
+ MIT
@@ -0,0 +1,30 @@
1
+ # ridgepoint
2
+
3
+ **LLM inference sizing that models the engine, not just the weights.**
4
+
5
+ `ridgepoint` answers the question every VRAM calculator gets wrong: *after your serving
6
+ engine (vLLM, SGLang, …) grabs its memory pool, how many concurrent tokens of KV cache
7
+ actually fit — and where does throughput land on the latency/throughput frontier?*
8
+
9
+ The name is the **ridge point** of the roofline model: the arithmetic intensity where
10
+ decode stops being memory-bandwidth-bound. It's the single number this tool reasons about.
11
+
12
+ > 🚧 **Early development.** This `0.0.0` release reserves the name. v0 (Rust core + Python
13
+ > bindings via PyO3/maturin, one code path for both a CLI and `pip install ridgepoint`) is
14
+ > in progress.
15
+
16
+ ## Why another calculator?
17
+
18
+ Most "will it fit?" tools compute `weights + KV < VRAM`. That is the wrong model for paged
19
+ engines: vLLM pre-reserves `gpu_memory_utilization × VRAM` (default 90%) at startup and
20
+ pages KV into that pool. ridgepoint models what actually decides the answer:
21
+
22
+ - **Engine-aware capacity** — usable KV pool *after* the pre-grab → max concurrent tokens.
23
+ - **Intervals, not points** — throughput sits on a Pareto frontier set by your latency budget.
24
+ - **MLA vs GQA KV geometry** — DeepSeek-style MLA is ~50–100× smaller than the GQA formula predicts.
25
+ - **Real quant bpw** — Q4_K_M is ~4.8 bits/weight, not the label's 4.5.
26
+ - **OOM honesty** — never silently under-predict memory.
27
+
28
+ ## License
29
+
30
+ MIT
@@ -0,0 +1,22 @@
1
+ # Placeholder build (setuptools) to reserve the name on PyPI.
2
+ # The real v0 will switch this to a maturin backend (Rust core + PyO3 bindings).
3
+ [build-system]
4
+ requires = ["setuptools>=61"]
5
+ build-backend = "setuptools.build_meta"
6
+
7
+ [project]
8
+ name = "ridgepoint"
9
+ version = "0.0.0"
10
+ description = "LLM inference sizing: engine-aware VRAM capacity, KV cache, and roofline intervals. Placeholder — under active development."
11
+ readme = "README.md"
12
+ requires-python = ">=3.9"
13
+ license = { text = "MIT" }
14
+ authors = [{ name = "Iskariot" }]
15
+ keywords = ["llm", "inference", "vram", "kv-cache", "roofline", "gpu", "sizing", "vllm"]
16
+
17
+ [project.urls]
18
+ Homepage = "https://github.com/Isk4R1oT/ridgepoint"
19
+ Repository = "https://github.com/Isk4R1oT/ridgepoint"
20
+
21
+ [tool.setuptools]
22
+ packages = ["ridgepoint"]
@@ -0,0 +1,3 @@
1
+ """ridgepoint — LLM inference sizing (placeholder, under active development)."""
2
+
3
+ __version__ = "0.0.0"
@@ -0,0 +1,44 @@
1
+ Metadata-Version: 2.4
2
+ Name: ridgepoint
3
+ Version: 0.0.0
4
+ Summary: LLM inference sizing: engine-aware VRAM capacity, KV cache, and roofline intervals. Placeholder — under active development.
5
+ Author: Iskariot
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/Isk4R1oT/ridgepoint
8
+ Project-URL: Repository, https://github.com/Isk4R1oT/ridgepoint
9
+ Keywords: llm,inference,vram,kv-cache,roofline,gpu,sizing,vllm
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Dynamic: license-file
14
+
15
+ # ridgepoint
16
+
17
+ **LLM inference sizing that models the engine, not just the weights.**
18
+
19
+ `ridgepoint` answers the question every VRAM calculator gets wrong: *after your serving
20
+ engine (vLLM, SGLang, …) grabs its memory pool, how many concurrent tokens of KV cache
21
+ actually fit — and where does throughput land on the latency/throughput frontier?*
22
+
23
+ The name is the **ridge point** of the roofline model: the arithmetic intensity where
24
+ decode stops being memory-bandwidth-bound. It's the single number this tool reasons about.
25
+
26
+ > 🚧 **Early development.** This `0.0.0` release reserves the name. v0 (Rust core + Python
27
+ > bindings via PyO3/maturin, one code path for both a CLI and `pip install ridgepoint`) is
28
+ > in progress.
29
+
30
+ ## Why another calculator?
31
+
32
+ Most "will it fit?" tools compute `weights + KV < VRAM`. That is the wrong model for paged
33
+ engines: vLLM pre-reserves `gpu_memory_utilization × VRAM` (default 90%) at startup and
34
+ pages KV into that pool. ridgepoint models what actually decides the answer:
35
+
36
+ - **Engine-aware capacity** — usable KV pool *after* the pre-grab → max concurrent tokens.
37
+ - **Intervals, not points** — throughput sits on a Pareto frontier set by your latency budget.
38
+ - **MLA vs GQA KV geometry** — DeepSeek-style MLA is ~50–100× smaller than the GQA formula predicts.
39
+ - **Real quant bpw** — Q4_K_M is ~4.8 bits/weight, not the label's 4.5.
40
+ - **OOM honesty** — never silently under-predict memory.
41
+
42
+ ## License
43
+
44
+ MIT
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ ridgepoint/__init__.py
5
+ ridgepoint.egg-info/PKG-INFO
6
+ ridgepoint.egg-info/SOURCES.txt
7
+ ridgepoint.egg-info/dependency_links.txt
8
+ ridgepoint.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ ridgepoint
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+