ckg-nvidia-ai 0.1.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.
- ckg_nvidia_ai-0.1.0/.gitignore +8 -0
- ckg_nvidia_ai-0.1.0/PKG-INFO +188 -0
- ckg_nvidia_ai-0.1.0/README.md +167 -0
- ckg_nvidia_ai-0.1.0/pyproject.toml +34 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/__init__.py +2 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/__main__.py +2 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-ai-enterprise.csv +51 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-clara.csv +46 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-cosmos.csv +47 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-cuda-toolkit.csv +51 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-cuda-x-libraries.csv +51 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-developer-ecosystem.csv +79 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-developer-tools.csv +49 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-drive.csv +46 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-gameworks.csv +51 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-graphics-research.csv +47 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-hpc-sdk.csv +50 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-isaac.csv +49 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-jetson.csv +50 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-metropolis.csv +51 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-nemo.csv +51 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-nim.csv +51 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-omniverse.csv +51 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-openshell.csv +46 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-riva.csv +49 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/domains/nvidia-tensorrt-triton.csv +52 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/graph.py +71 -0
- ckg_nvidia_ai-0.1.0/src/ckg_nvidia_ai/server.py +208 -0
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ckg-nvidia-ai
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: NVIDIA AI developer stack as a traversable knowledge graph — 20 CKGs, 998 nodes, MCP-native
|
|
5
|
+
Project-URL: Homepage, https://graphifymd.com
|
|
6
|
+
Project-URL: Repository, https://github.com/Yarmoluk/ckg-nvidia-ai
|
|
7
|
+
Project-URL: Bug Tracker, https://github.com/Yarmoluk/ckg-nvidia-ai/issues
|
|
8
|
+
Author-email: Daniel Yarmoluk <daniel.yarmoluk@gmail.com>
|
|
9
|
+
License: MIT
|
|
10
|
+
Keywords: ai-agents,cuda,knowledge-graph,llm,mcp,nemo,nim,nvidia,tensorrt
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
18
|
+
Requires-Python: >=3.11
|
|
19
|
+
Requires-Dist: mcp[cli]>=1.0.0
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# ckg-nvidia-ai
|
|
23
|
+
|
|
24
|
+
**The NVIDIA AI developer stack as a traversable knowledge graph.**
|
|
25
|
+
|
|
26
|
+
20 CKGs · 998 nodes · MCP-native · 4× F1 of RAG · 11× fewer tokens · auditable by design
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
Instead of sending an AI agent to scan thousands of pages of NVIDIA documentation, give it a graph it can traverse. Every concept, every dependency, every connection — declared, typed, and queryable in ~269 tokens per question.
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
NIM → TensorRT-LLM → quantization → FP8 precision → Hopper SM90 requirement
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
The agent calls `query_ckg()` and gets that chain. Not a summary. The actual dependency path.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## What's inside
|
|
41
|
+
|
|
42
|
+
| Domain | Description |
|
|
43
|
+
|---|---|
|
|
44
|
+
| `nvidia-nim` | NVIDIA Inference Microservices — deployment, scaling, speculative decoding |
|
|
45
|
+
| `nvidia-nemo` | NeMo framework — training, PEFT, guardrails, evaluation |
|
|
46
|
+
| `nvidia-tensorrt-triton` | TensorRT-LLM + Triton Inference Server — quantization, batching, KV cache |
|
|
47
|
+
| `nvidia-cuda-toolkit` | CUDA compiler, PTX, memory hierarchy, Hopper/Blackwell features |
|
|
48
|
+
| `nvidia-cuda-x-libraries` | cuBLAS, cuDNN, cuFFT, NCCL, Thrust — the acceleration layer |
|
|
49
|
+
| `nvidia-hpc-sdk` | OpenACC, OpenMP, CUDA Fortran, multi-GPU scaling |
|
|
50
|
+
| `nvidia-omniverse` | Universal Scene Description, simulation, digital twins |
|
|
51
|
+
| `nvidia-isaac` | Isaac Lab + Isaac Sim — robot learning, sensor simulation |
|
|
52
|
+
| `nvidia-cosmos` | Physical AI world foundation models — video generation, tokenization |
|
|
53
|
+
| `nvidia-drive` | Autonomous vehicle stack — perception, planning, safety validation |
|
|
54
|
+
| `nvidia-jetson` | Edge AI platform — Orin NX, AGX, DeepStream, Holoscan |
|
|
55
|
+
| `nvidia-clara` | Healthcare AI — MONAI, Parabricks genomics, BioNeMo, Holoscan SDK |
|
|
56
|
+
| `nvidia-metropolis` | Intelligent video analytics — VLMs, TAO Toolkit, DeepStream |
|
|
57
|
+
| `nvidia-riva` | Speech AI — ASR, TTS, NLP pipelines, streaming |
|
|
58
|
+
| `nvidia-gameworks` | Graphics R&D — DLSS, RTX, PhysX, Reflex |
|
|
59
|
+
| `nvidia-developer-tools` | Nsight, CUPTI, Compute Sanitizer, profiling stack |
|
|
60
|
+
| `nvidia-graphics-research` | Research graphics — neural rendering, path tracing, differentiable rendering |
|
|
61
|
+
| `nvidia-ai-enterprise` | Enterprise AI platform — NIM blueprints, governance, fleet management |
|
|
62
|
+
| `nvidia-developer-ecosystem` | Cross-cutting: NGC, DGX, Inception, AgentIQ, MCP integration |
|
|
63
|
+
| `nvidia-openshell` | Agent sandbox runtime — policy enforcement, CVEs, authorization gaps |
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Install
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
pip install ckg-nvidia-ai
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Or run without installing:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
uvx ckg-nvidia-ai
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Use as MCP Server
|
|
82
|
+
|
|
83
|
+
### Claude Desktop
|
|
84
|
+
|
|
85
|
+
```json
|
|
86
|
+
{
|
|
87
|
+
"mcpServers": {
|
|
88
|
+
"nvidia-ai": {
|
|
89
|
+
"command": "uvx",
|
|
90
|
+
"args": ["ckg-nvidia-ai"]
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### Cursor / other MCP clients
|
|
97
|
+
|
|
98
|
+
Same config — substitute `uvx` with `python -m ckg_nvidia_ai` if you prefer a venv install.
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## Tools
|
|
103
|
+
|
|
104
|
+
### `list_domains()`
|
|
105
|
+
Returns all 20 NVIDIA AI domains. Start here.
|
|
106
|
+
|
|
107
|
+
### `search_concepts(query, domain)`
|
|
108
|
+
Find concepts by keyword within a domain.
|
|
109
|
+
|
|
110
|
+
```
|
|
111
|
+
search_concepts("speculative decoding", "nvidia-nim")
|
|
112
|
+
→ Speculative Decoding [Optimization]
|
|
113
|
+
Draft Model [Component]
|
|
114
|
+
KV Cache [Infrastructure]
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
### `query_ckg(concept, domain, depth=3)`
|
|
118
|
+
Traverse the graph from a concept — see what it requires and what depends on it.
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
query_ckg("TensorRT-LLM", "nvidia-tensorrt-triton", 3)
|
|
122
|
+
→ ## TensorRT-LLM · nvidia-tensorrt-triton
|
|
123
|
+
Type: Framework
|
|
124
|
+
|
|
125
|
+
### Prerequisites (what you need first)
|
|
126
|
+
- CUDA Toolkit
|
|
127
|
+
- CUDA Driver API
|
|
128
|
+
- cuBLAS
|
|
129
|
+
- Hopper SM90 Architecture
|
|
130
|
+
- FP8 / FP4 Quantization
|
|
131
|
+
|
|
132
|
+
### Builds toward
|
|
133
|
+
- Triton Inference Server
|
|
134
|
+
- NIM Microservice Runtime
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### `get_prerequisites(concept, domain)`
|
|
138
|
+
Full ordered prerequisite chain — everything to understand or install first.
|
|
139
|
+
|
|
140
|
+
```
|
|
141
|
+
get_prerequisites("Isaac Lab", "nvidia-isaac")
|
|
142
|
+
→ Isaac Lab → Isaac Sim → USD Composer → Omniverse Kit → ...
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## How it works
|
|
148
|
+
|
|
149
|
+
Each domain is a typed dependency graph stored as CSV:
|
|
150
|
+
|
|
151
|
+
```
|
|
152
|
+
ConceptID, ConceptLabel, Dependencies, TaxonomyID
|
|
153
|
+
1, TensorRT-LLM, "", Framework
|
|
154
|
+
2, CUDA Toolkit, "", Platform
|
|
155
|
+
3, FP8 Quantization, "2", Optimization
|
|
156
|
+
4, Hopper SM90, "2", Architecture
|
|
157
|
+
5, Speculative Decoding, "1|4", Optimization
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
When an agent queries a concept, the server runs BFS traversal over declared edges. The answer is composed entirely of traversed relationships — not probabilistic inference, not RAG retrieval, not token prediction over documentation.
|
|
161
|
+
|
|
162
|
+
**The graph doesn't guess. It traverses.**
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
## Benchmark
|
|
167
|
+
|
|
168
|
+
Built on the [KRB Benchmark v0.6.2](https://github.com/Yarmoluk/ckg-benchmark/blob/main/paper/main.pdf):
|
|
169
|
+
|
|
170
|
+
| System | F1 | Tokens/query | Cost |
|
|
171
|
+
|---|---|---|---|
|
|
172
|
+
| **CKG** | **0.471** | **269** | **$7.81/1K** |
|
|
173
|
+
| RAG | 0.123 | 2,982 | $76.23/1K |
|
|
174
|
+
| GraphRAG | 0.120 | — | — |
|
|
175
|
+
|
|
176
|
+
~4× F1 · 11× fewer tokens · auditable by design
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
## Related
|
|
181
|
+
|
|
182
|
+
- **[ckg-mcp](https://pypi.org/project/ckg-mcp/)** — 97 domains across all topics (includes NVIDIA + science, finance, law, healthcare, and more)
|
|
183
|
+
- **[KRB Benchmark](https://huggingface.co/datasets/danyarm/ckg-benchmark)** — open benchmark dataset
|
|
184
|
+
- **[graphifymd.com](https://graphifymd.com)** — CKG catalog and Context-as-a-Service
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
*Built by [Graphify.md](https://graphifymd.com). Patent pending.*
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
# ckg-nvidia-ai
|
|
2
|
+
|
|
3
|
+
**The NVIDIA AI developer stack as a traversable knowledge graph.**
|
|
4
|
+
|
|
5
|
+
20 CKGs · 998 nodes · MCP-native · 4× F1 of RAG · 11× fewer tokens · auditable by design
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
Instead of sending an AI agent to scan thousands of pages of NVIDIA documentation, give it a graph it can traverse. Every concept, every dependency, every connection — declared, typed, and queryable in ~269 tokens per question.
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
NIM → TensorRT-LLM → quantization → FP8 precision → Hopper SM90 requirement
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
The agent calls `query_ckg()` and gets that chain. Not a summary. The actual dependency path.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## What's inside
|
|
20
|
+
|
|
21
|
+
| Domain | Description |
|
|
22
|
+
|---|---|
|
|
23
|
+
| `nvidia-nim` | NVIDIA Inference Microservices — deployment, scaling, speculative decoding |
|
|
24
|
+
| `nvidia-nemo` | NeMo framework — training, PEFT, guardrails, evaluation |
|
|
25
|
+
| `nvidia-tensorrt-triton` | TensorRT-LLM + Triton Inference Server — quantization, batching, KV cache |
|
|
26
|
+
| `nvidia-cuda-toolkit` | CUDA compiler, PTX, memory hierarchy, Hopper/Blackwell features |
|
|
27
|
+
| `nvidia-cuda-x-libraries` | cuBLAS, cuDNN, cuFFT, NCCL, Thrust — the acceleration layer |
|
|
28
|
+
| `nvidia-hpc-sdk` | OpenACC, OpenMP, CUDA Fortran, multi-GPU scaling |
|
|
29
|
+
| `nvidia-omniverse` | Universal Scene Description, simulation, digital twins |
|
|
30
|
+
| `nvidia-isaac` | Isaac Lab + Isaac Sim — robot learning, sensor simulation |
|
|
31
|
+
| `nvidia-cosmos` | Physical AI world foundation models — video generation, tokenization |
|
|
32
|
+
| `nvidia-drive` | Autonomous vehicle stack — perception, planning, safety validation |
|
|
33
|
+
| `nvidia-jetson` | Edge AI platform — Orin NX, AGX, DeepStream, Holoscan |
|
|
34
|
+
| `nvidia-clara` | Healthcare AI — MONAI, Parabricks genomics, BioNeMo, Holoscan SDK |
|
|
35
|
+
| `nvidia-metropolis` | Intelligent video analytics — VLMs, TAO Toolkit, DeepStream |
|
|
36
|
+
| `nvidia-riva` | Speech AI — ASR, TTS, NLP pipelines, streaming |
|
|
37
|
+
| `nvidia-gameworks` | Graphics R&D — DLSS, RTX, PhysX, Reflex |
|
|
38
|
+
| `nvidia-developer-tools` | Nsight, CUPTI, Compute Sanitizer, profiling stack |
|
|
39
|
+
| `nvidia-graphics-research` | Research graphics — neural rendering, path tracing, differentiable rendering |
|
|
40
|
+
| `nvidia-ai-enterprise` | Enterprise AI platform — NIM blueprints, governance, fleet management |
|
|
41
|
+
| `nvidia-developer-ecosystem` | Cross-cutting: NGC, DGX, Inception, AgentIQ, MCP integration |
|
|
42
|
+
| `nvidia-openshell` | Agent sandbox runtime — policy enforcement, CVEs, authorization gaps |
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Install
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
pip install ckg-nvidia-ai
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Or run without installing:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
uvx ckg-nvidia-ai
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## Use as MCP Server
|
|
61
|
+
|
|
62
|
+
### Claude Desktop
|
|
63
|
+
|
|
64
|
+
```json
|
|
65
|
+
{
|
|
66
|
+
"mcpServers": {
|
|
67
|
+
"nvidia-ai": {
|
|
68
|
+
"command": "uvx",
|
|
69
|
+
"args": ["ckg-nvidia-ai"]
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
### Cursor / other MCP clients
|
|
76
|
+
|
|
77
|
+
Same config — substitute `uvx` with `python -m ckg_nvidia_ai` if you prefer a venv install.
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Tools
|
|
82
|
+
|
|
83
|
+
### `list_domains()`
|
|
84
|
+
Returns all 20 NVIDIA AI domains. Start here.
|
|
85
|
+
|
|
86
|
+
### `search_concepts(query, domain)`
|
|
87
|
+
Find concepts by keyword within a domain.
|
|
88
|
+
|
|
89
|
+
```
|
|
90
|
+
search_concepts("speculative decoding", "nvidia-nim")
|
|
91
|
+
→ Speculative Decoding [Optimization]
|
|
92
|
+
Draft Model [Component]
|
|
93
|
+
KV Cache [Infrastructure]
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### `query_ckg(concept, domain, depth=3)`
|
|
97
|
+
Traverse the graph from a concept — see what it requires and what depends on it.
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
query_ckg("TensorRT-LLM", "nvidia-tensorrt-triton", 3)
|
|
101
|
+
→ ## TensorRT-LLM · nvidia-tensorrt-triton
|
|
102
|
+
Type: Framework
|
|
103
|
+
|
|
104
|
+
### Prerequisites (what you need first)
|
|
105
|
+
- CUDA Toolkit
|
|
106
|
+
- CUDA Driver API
|
|
107
|
+
- cuBLAS
|
|
108
|
+
- Hopper SM90 Architecture
|
|
109
|
+
- FP8 / FP4 Quantization
|
|
110
|
+
|
|
111
|
+
### Builds toward
|
|
112
|
+
- Triton Inference Server
|
|
113
|
+
- NIM Microservice Runtime
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
### `get_prerequisites(concept, domain)`
|
|
117
|
+
Full ordered prerequisite chain — everything to understand or install first.
|
|
118
|
+
|
|
119
|
+
```
|
|
120
|
+
get_prerequisites("Isaac Lab", "nvidia-isaac")
|
|
121
|
+
→ Isaac Lab → Isaac Sim → USD Composer → Omniverse Kit → ...
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
## How it works
|
|
127
|
+
|
|
128
|
+
Each domain is a typed dependency graph stored as CSV:
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
ConceptID, ConceptLabel, Dependencies, TaxonomyID
|
|
132
|
+
1, TensorRT-LLM, "", Framework
|
|
133
|
+
2, CUDA Toolkit, "", Platform
|
|
134
|
+
3, FP8 Quantization, "2", Optimization
|
|
135
|
+
4, Hopper SM90, "2", Architecture
|
|
136
|
+
5, Speculative Decoding, "1|4", Optimization
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
When an agent queries a concept, the server runs BFS traversal over declared edges. The answer is composed entirely of traversed relationships — not probabilistic inference, not RAG retrieval, not token prediction over documentation.
|
|
140
|
+
|
|
141
|
+
**The graph doesn't guess. It traverses.**
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Benchmark
|
|
146
|
+
|
|
147
|
+
Built on the [KRB Benchmark v0.6.2](https://github.com/Yarmoluk/ckg-benchmark/blob/main/paper/main.pdf):
|
|
148
|
+
|
|
149
|
+
| System | F1 | Tokens/query | Cost |
|
|
150
|
+
|---|---|---|---|
|
|
151
|
+
| **CKG** | **0.471** | **269** | **$7.81/1K** |
|
|
152
|
+
| RAG | 0.123 | 2,982 | $76.23/1K |
|
|
153
|
+
| GraphRAG | 0.120 | — | — |
|
|
154
|
+
|
|
155
|
+
~4× F1 · 11× fewer tokens · auditable by design
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## Related
|
|
160
|
+
|
|
161
|
+
- **[ckg-mcp](https://pypi.org/project/ckg-mcp/)** — 97 domains across all topics (includes NVIDIA + science, finance, law, healthcare, and more)
|
|
162
|
+
- **[KRB Benchmark](https://huggingface.co/datasets/danyarm/ckg-benchmark)** — open benchmark dataset
|
|
163
|
+
- **[graphifymd.com](https://graphifymd.com)** — CKG catalog and Context-as-a-Service
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
*Built by [Graphify.md](https://graphifymd.com). Patent pending.*
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ckg-nvidia-ai"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "NVIDIA AI developer stack as a traversable knowledge graph — 20 CKGs, 998 nodes, MCP-native"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "Daniel Yarmoluk", email = "daniel.yarmoluk@gmail.com" }]
|
|
12
|
+
keywords = ["nvidia", "knowledge-graph", "mcp", "ai-agents", "nim", "nemo", "cuda", "tensorrt", "llm"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 4 - Beta",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.11",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
21
|
+
]
|
|
22
|
+
requires-python = ">=3.11"
|
|
23
|
+
dependencies = ["mcp[cli]>=1.0.0"]
|
|
24
|
+
|
|
25
|
+
[project.scripts]
|
|
26
|
+
ckg-nvidia-ai = "ckg_nvidia_ai.server:main"
|
|
27
|
+
|
|
28
|
+
[project.urls]
|
|
29
|
+
Homepage = "https://graphifymd.com"
|
|
30
|
+
Repository = "https://github.com/Yarmoluk/ckg-nvidia-ai"
|
|
31
|
+
"Bug Tracker" = "https://github.com/Yarmoluk/ckg-nvidia-ai/issues"
|
|
32
|
+
|
|
33
|
+
[tool.hatch.build.targets.wheel]
|
|
34
|
+
packages = ["src/ckg_nvidia_ai"]
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
ConceptID,ConceptLabel,Dependencies,TaxonomyID
|
|
2
|
+
1,NVIDIA AI Enterprise,2|3,Platform
|
|
3
|
+
2,NVAIE License,,Commercial
|
|
4
|
+
3,Enterprise Support,1,Support
|
|
5
|
+
4,Long-Term Support Branch,1,Policy
|
|
6
|
+
5,90-Day Trial,,Commercial
|
|
7
|
+
6,Subscription Tiers,2,Commercial
|
|
8
|
+
7,License Renewal,2,Commercial
|
|
9
|
+
8,CVE Patching SLA,3,Policy
|
|
10
|
+
9,Compliance Frameworks,8,Regulatory
|
|
11
|
+
10,Enterprise Support Portal,3,Tool
|
|
12
|
+
11,License Server,2,Infrastructure
|
|
13
|
+
12,NGC Private Registry,2,Registry
|
|
14
|
+
13,AI Enterprise Hub,12,Catalog
|
|
15
|
+
14,Hardened Container Images,12|2,Artifact
|
|
16
|
+
15,Container Security Scanning,14,Security
|
|
17
|
+
16,Certified Software Catalog,13,Catalog
|
|
18
|
+
17,NVIDIA API Catalog,13|2,Service
|
|
19
|
+
18,NIM Enterprise,2|21,Microservice
|
|
20
|
+
19,NeMo Enterprise,2|23,Framework
|
|
21
|
+
20,RAPIDS Enterprise,2,Library
|
|
22
|
+
21,Triton Enterprise,2|23,Server
|
|
23
|
+
22,TensorRT Enterprise,2|23,Library
|
|
24
|
+
23,CUDA Enterprise Runtime,2,Runtime
|
|
25
|
+
24,cuOpt Enterprise,2|23,Microservice
|
|
26
|
+
25,Merlin Enterprise,2|20,Framework
|
|
27
|
+
26,Parabricks Enterprise,2|23,Application
|
|
28
|
+
27,DeepStream Enterprise,2|22,SDK
|
|
29
|
+
28,Riva Enterprise,2|21,Microservice
|
|
30
|
+
29,MONAI Enterprise,2,Framework
|
|
31
|
+
30,GPU Operator,33,Operator
|
|
32
|
+
31,Network Operator,33,Operator
|
|
33
|
+
32,NIM Operator,33,Operator
|
|
34
|
+
33,Kubernetes Cluster,,Infrastructure
|
|
35
|
+
34,Run:AI Integration,33,Integration
|
|
36
|
+
35,DCGM,30,Monitor
|
|
37
|
+
36,Prometheus / Grafana Stack,35,Monitor
|
|
38
|
+
37,DOCA Enterprise,31,SDK
|
|
39
|
+
38,Cloud Partners,,Partner
|
|
40
|
+
39,DGX Cloud,40,Service
|
|
41
|
+
40,Base Command Platform,,Platform
|
|
42
|
+
41,Certified Systems,2,Hardware
|
|
43
|
+
42,Private Cloud,41,Infrastructure
|
|
44
|
+
43,vGPU Software,2,Software
|
|
45
|
+
44,Multi-Node Training,40,Workload
|
|
46
|
+
45,Fleet Command,2,Platform
|
|
47
|
+
46,Jetson Edge Fleet,45,Hardware
|
|
48
|
+
47,ISV Partner Program,2,Program
|
|
49
|
+
48,MLOps Pipeline,19|20,Workflow
|
|
50
|
+
49,AI Workflow Catalog,13,Catalog
|
|
51
|
+
50,NVAIE Manager Portal,1,Tool
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
ConceptID,ConceptLabel,Dependencies,TaxonomyID
|
|
2
|
+
1,Clara Platform,,Platform
|
|
3
|
+
2,Cuda X Libraries,,SDK
|
|
4
|
+
3,Nvidia Ngc,,Platform
|
|
5
|
+
4,Dgx Systems,,Platform
|
|
6
|
+
5,Base Command Platform,4,Platform
|
|
7
|
+
6,Bionemo Agent Toolkit,2,Platform
|
|
8
|
+
7,Agent Skills Framework,6,SDK
|
|
9
|
+
8,Skill Cards,7,Standard
|
|
10
|
+
9,Digital Biology Skills,7,Concept
|
|
11
|
+
10,Digital Health Skills,7,Concept
|
|
12
|
+
11,Medtech Skills,7,Concept
|
|
13
|
+
12,Closed Loop Discovery,6,Concept
|
|
14
|
+
13,Parabricks,2,SDK
|
|
15
|
+
14,Gatk4 Best Practices,,Standard
|
|
16
|
+
15,Variant Calling,14,Workflow
|
|
17
|
+
16,Short Read Sequencing,13,Workflow
|
|
18
|
+
17,Long Read Sequencing,13,Workflow
|
|
19
|
+
18,Gpu Seq Acceleration,2,Algorithm
|
|
20
|
+
19,Monai Toolkit,2|3,SDK
|
|
21
|
+
20,Monai Core,,SDK
|
|
22
|
+
21,Monai Label,20,Tool
|
|
23
|
+
22,Nvidia Flare,,SDK
|
|
24
|
+
23,Federated Learning,22,Algorithm
|
|
25
|
+
24,Clara Viz,2,SDK
|
|
26
|
+
25,Monai Pretrained Models,19,Concept
|
|
27
|
+
26,Bionemo Training Framework,2|4|5,SDK
|
|
28
|
+
27,Protein Structure Prediction,26,Algorithm
|
|
29
|
+
28,Molecular Docking,26,Algorithm
|
|
30
|
+
29,Generative Chemistry,26,Algorithm
|
|
31
|
+
30,Generative Protein Design,26,Algorithm
|
|
32
|
+
31,Protein Binder Design,27|28|30,Workflow
|
|
33
|
+
32,Biomolecular Formats,,Standard
|
|
34
|
+
33,Rapids Singlecell,2,SDK
|
|
35
|
+
34,Single Cell Transcriptomics,33,Workflow
|
|
36
|
+
35,Dimensionality Reduction Sc,33,Algorithm
|
|
37
|
+
36,Gpu Clustering,33,Algorithm
|
|
38
|
+
37,Holoscan Sdk,2,SDK
|
|
39
|
+
38,Isaac Healthcare,2,Platform
|
|
40
|
+
39,Surgical Robotics Policy,38,Workflow
|
|
41
|
+
40,Medical Device Streaming,37,Workflow
|
|
42
|
+
41,Biomedical Aiq Agent,6,Tool
|
|
43
|
+
42,Ambient Healthcare Agents,6,Tool
|
|
44
|
+
43,Clinical Data Privacy,23,Concept
|
|
45
|
+
44,Automated Documentation,42,Workflow
|
|
46
|
+
45,Real World Evidence,,Concept
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
ConceptID,ConceptLabel,Dependencies,TaxonomyID
|
|
2
|
+
1,Cosmos World Foundation Model,24|29|21,PLATFORM
|
|
3
|
+
2,Cosmos-1.0-Predict,1|4|23|22,MODEL
|
|
4
|
+
3,Cosmos-1.0-Transfer,1|17,MODEL
|
|
5
|
+
4,Cosmos Tokenizer,10|31|32,TOOL
|
|
6
|
+
5,Cosmos-1.0-Reason,1,MODEL
|
|
7
|
+
6,Cosmos-1.0-Nano,1|36,MODEL
|
|
8
|
+
7,Physical AI,15|16,CONCEPT
|
|
9
|
+
8,Synthetic Data Pipeline,2|45,PIPELINE
|
|
10
|
+
9,Sim-to-Real Transfer,3|43,CONCEPT
|
|
11
|
+
10,Video Tokenization,4,PROCESS
|
|
12
|
+
11,Autoregressive WFM,32,ARCHITECTURE
|
|
13
|
+
12,Diffusion WFM,31|30,ARCHITECTURE
|
|
14
|
+
13,Text-to-World Generation,2|40,CAPABILITY
|
|
15
|
+
14,Video-to-World Prediction,2|10,CAPABILITY
|
|
16
|
+
15,Robot Policy Training,8|23|43,PROCESS
|
|
17
|
+
16,AV Scenario Simulation,2|13|22,PROCESS
|
|
18
|
+
17,Omniverse Integration,45,INTEGRATION
|
|
19
|
+
18,Isaac Lab Integration,15,INTEGRATION
|
|
20
|
+
19,DRIVE Sim Integration,16,INTEGRATION
|
|
21
|
+
20,GR00T Integration,18|15,INTEGRATION
|
|
22
|
+
21,Physical Laws Conditioning,42,MECHANISM
|
|
23
|
+
22,Camera Model Conditioning,40,MECHANISM
|
|
24
|
+
23,Action Conditioning,40,MECHANISM
|
|
25
|
+
24,Cosmos Dataset,35,DATA
|
|
26
|
+
25,Safety Filter,,COMPONENT
|
|
27
|
+
26,NVIDIA Open Model License,,POLICY
|
|
28
|
+
27,HuggingFace Release,26,DISTRIBUTION
|
|
29
|
+
28,Post-Training / Fine-Tuning,37|4,PROCESS
|
|
30
|
+
29,Spatiotemporal Attention,,MECHANISM
|
|
31
|
+
30,Video Diffusion Transformer (DiT),29,ARCHITECTURE
|
|
32
|
+
31,Continuous Tokenizer,,COMPONENT
|
|
33
|
+
32,Discrete Tokenizer,,COMPONENT
|
|
34
|
+
33,World State Representation,10,CONCEPT
|
|
35
|
+
34,Multi-View Generation,22|2,CAPABILITY
|
|
36
|
+
35,Teleoperation Data,,DATA
|
|
37
|
+
36,Edge Deployment,,PROCESS
|
|
38
|
+
37,NeMo Framework,,TOOL
|
|
39
|
+
38,WFM Inference API,,API
|
|
40
|
+
39,Generative World Simulation,1,CONCEPT
|
|
41
|
+
40,Conditioning Framework,,MECHANISM
|
|
42
|
+
41,Video Pretraining Corpus,24,DATA
|
|
43
|
+
42,Physics Simulation Engine,17,TOOL
|
|
44
|
+
43,Domain Randomization,9,TECHNIQUE
|
|
45
|
+
44,Robot Manipulation,15,CAPABILITY
|
|
46
|
+
45,3D Scene Generation,17,CAPABILITY
|
|
47
|
+
46,NVIDIA Cloud Functions (NVCF),,PLATFORM
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
ConceptID,ConceptLabel,Dependencies,TaxonomyID
|
|
2
|
+
1,Nvcc Compiler,2|3|4|7|8,Tool
|
|
3
|
+
2,Ptx Ir,3|6,Standard
|
|
4
|
+
3,Cubin,,Tool
|
|
5
|
+
4,Fatbinary,2|3,Tool
|
|
6
|
+
5,Nvrtc,2|6,SDK
|
|
7
|
+
6,Ptx Jit,3,Algorithm
|
|
8
|
+
7,Libdevice,9,SDK
|
|
9
|
+
8,Cuda Cpp Extensions,11|17|12|33,Standard
|
|
10
|
+
9,Cuda Math Api,,API
|
|
11
|
+
10,Thread Hierarchy,11|12|13,Concept
|
|
12
|
+
11,Warp,,Concept
|
|
13
|
+
12,Cooperative Groups,11,API
|
|
14
|
+
13,Cuda Cluster,44,Concept
|
|
15
|
+
14,Occupancy Calculator,16,Tool
|
|
16
|
+
15,Sm Architecture,,Concept
|
|
17
|
+
16,Device Properties,,API
|
|
18
|
+
17,Shared Memory,,Concept
|
|
19
|
+
18,Global Memory,19,Concept
|
|
20
|
+
19,Hbm Memory,,Platform
|
|
21
|
+
20,L2 Cache,,Concept
|
|
22
|
+
21,Unified Memory,18|29,API
|
|
23
|
+
22,Pinned Memory,,Concept
|
|
24
|
+
23,Memory Pool,18,API
|
|
25
|
+
24,Texture Memory,,Concept
|
|
26
|
+
25,Constant Memory,,Concept
|
|
27
|
+
26,Cudamemcpyasync,30|22,API
|
|
28
|
+
27,Peer Access,49,API
|
|
29
|
+
28,Cuda Runtime,29|30|31|23,API
|
|
30
|
+
29,Cuda Driver Api,6|15,API
|
|
31
|
+
30,Stream Api,,API
|
|
32
|
+
31,Event Api,30,API
|
|
33
|
+
32,Cuda Graphs,30|28,API
|
|
34
|
+
33,Atomic Operations,,Concept
|
|
35
|
+
34,Cublas,28|9,SDK
|
|
36
|
+
35,Cusparse,28,SDK
|
|
37
|
+
36,Cudss,35|28,SDK
|
|
38
|
+
37,Thrust,38|28,SDK
|
|
39
|
+
38,Cub,15,SDK
|
|
40
|
+
39,Cupti,28,SDK
|
|
41
|
+
40,Nsight Systems,39|30,Tool
|
|
42
|
+
41,Nsight Compute,39|14,Tool
|
|
43
|
+
42,Compute Sanitizer,28|17,Tool
|
|
44
|
+
43,Hopper Architecture,44|45|13|49,Platform
|
|
45
|
+
44,Tma Hopper,17|18,API
|
|
46
|
+
45,Warpgroup Mma,17|11,API
|
|
47
|
+
46,Blackwell Architecture,47|48|49,Platform
|
|
48
|
+
47,Fp4 Blackwell,45,Concept
|
|
49
|
+
48,Mxfp8,45|34,Concept
|
|
50
|
+
49,Nvlink,,Platform
|
|
51
|
+
50,Multi Gpu Api,27|28|49,API
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
ConceptID,ConceptLabel,Dependencies,TaxonomyID
|
|
2
|
+
1,Cuda Foundation,,Platform
|
|
3
|
+
2,Tensor Cores,1,Platform
|
|
4
|
+
3,Cublas,1|2,API
|
|
5
|
+
4,Cufft,1,API
|
|
6
|
+
5,Curand,1,API
|
|
7
|
+
6,Cusolver,1|3,API
|
|
8
|
+
7,Cusparse,1,API
|
|
9
|
+
8,Cutensor,1|2,API
|
|
10
|
+
9,Cudss,1|6,API
|
|
11
|
+
10,Amgx,1|7|6,API
|
|
12
|
+
11,Nvmath Python,3|4,SDK
|
|
13
|
+
12,Cudnn,1|2|3,API
|
|
14
|
+
13,Operation Graph,12,Concept
|
|
15
|
+
14,Multi Op Fusion,13,Algorithm
|
|
16
|
+
15,Frontend Api,12|13,API
|
|
17
|
+
16,Cutlass,1|2,SDK
|
|
18
|
+
17,Flashinfer,16|2,API
|
|
19
|
+
18,Cuda Graph,1,Tool
|
|
20
|
+
19,Tensorrt,12|3|16,SDK
|
|
21
|
+
20,Tensorrt Llm,19|17|39|41,SDK
|
|
22
|
+
21,Thrust,1,API
|
|
23
|
+
22,Cub,1,API
|
|
24
|
+
23,Cuda Parallel,21|22,API
|
|
25
|
+
24,Rapids,1|21,Platform
|
|
26
|
+
25,Cudf,24,API
|
|
27
|
+
26,Cuml,24|3,API
|
|
28
|
+
27,Cugraph,24|7,API
|
|
29
|
+
28,Cuvs,24,API
|
|
30
|
+
29,Cuopt,1|3,API
|
|
31
|
+
30,Nemo Curator,25|28,Tool
|
|
32
|
+
31,Morpheus,19|25|26,SDK
|
|
33
|
+
32,Gpu Direct Storage,1,Platform
|
|
34
|
+
33,Dali,1|34,SDK
|
|
35
|
+
34,Nvimagecodec,1,API
|
|
36
|
+
35,Cv Cuda,1|36,API
|
|
37
|
+
36,Npp,1,API
|
|
38
|
+
37,Video Codec Sdk,1,SDK
|
|
39
|
+
38,Optical Flow Sdk,1,SDK
|
|
40
|
+
39,Nccl,1,API
|
|
41
|
+
40,Nvshmem,1|39,API
|
|
42
|
+
41,Nixl,1|32,API
|
|
43
|
+
42,Cuequivariance,1,API
|
|
44
|
+
43,Culitho,1|4|7,API
|
|
45
|
+
44,Warp Nvidia,1,SDK
|
|
46
|
+
45,Physics Nemo,1|12|44|42,SDK
|
|
47
|
+
46,Earth2,45|39|12,Platform
|
|
48
|
+
47,Cuquantum,1|8,SDK
|
|
49
|
+
48,Cupqc,1|5,API
|
|
50
|
+
49,Cuda Q Qec,47,SDK
|
|
51
|
+
50,Cuda Q Solvers,47|3,SDK
|