Jr23xd23 commited on
Commit
5d2c9da
·
verified ·
1 Parent(s): 15459b9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +137 -0
README.md ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # RightNow GPU Database
2
+
3
+ Comprehensive GPU specifications database with architecture, manufacturing, API support, performance details, and kernel development specs.
4
+
5
+ **2,824 GPUs** across NVIDIA, AMD, and Intel
6
+
7
+ Part of [RightNow](https://www.rightnowai.co) — AI-powered code editor for GPU kernel development
8
+
9
+ ## Data
10
+
11
+ | Vendor | GPUs | File |
12
+ |--------|------|------|
13
+ | NVIDIA | 1,286 | [`data/nvidia/all.json`](data/nvidia/all.json) |
14
+ | AMD | 1,292 | [`data/amd/all.json`](data/amd/all.json) |
15
+ | Intel | 180 | [`data/intel/all.json`](data/intel/all.json) |
16
+ | **All** | 2,824 | [`data/all-gpus.json`](data/all-gpus.json) |
17
+
18
+ ## Schema
19
+
20
+ Each GPU contains up to 55 fields:
21
+
22
+ ```json
23
+ {
24
+ "name": "GeForce RTX 4090",
25
+ "vendor": "nvidia",
26
+ "manufacturer": "NVIDIA",
27
+ "gpuName": "AD102",
28
+ "architecture": "Ada Lovelace",
29
+ "generation": "GeForce 40",
30
+
31
+ "foundry": "TSMC",
32
+ "processSize": 5,
33
+ "transistors": 76.3,
34
+ "transistorDensity": 125.3,
35
+ "dieSize": 609.0,
36
+ "chipPackage": "BGA-2150",
37
+ "releaseDate": "2022-09-20",
38
+
39
+ "baseClock": 2235.0,
40
+ "boostClock": 2520.0,
41
+ "memoryClock": 1313.0,
42
+
43
+ "memorySize": 24.0,
44
+ "memoryType": "GDDR6X",
45
+ "memoryBus": 384,
46
+ "memoryBandwidth": 1010.0,
47
+
48
+ "shaders": 16384,
49
+ "tmus": 512,
50
+ "rops": 176,
51
+ "sms": 128,
52
+ "tensorCores": 512,
53
+ "rtCores": 128,
54
+ "coresPerSM": 128,
55
+
56
+ "l1Cache": 128.0,
57
+ "l2Cache": 72.0,
58
+
59
+ "tdp": 450,
60
+ "suggestedPSU": 850,
61
+ "powerConnectors": "1x 16-pin",
62
+
63
+ "length": 304.0,
64
+ "width": 61.0,
65
+ "slot": "Triple-slot",
66
+ "displayOutputs": "1x HDMI 2.1, 3x DisplayPort 1.4a",
67
+ "busInterface": "PCIe 4.0 x16",
68
+
69
+ "pixelRate": 443.5,
70
+ "textureRate": 1290.2,
71
+ "fp16": 82.58,
72
+ "fp32": 82.58,
73
+ "fp64": 1.29,
74
+
75
+ "directX": "12.2",
76
+ "openGL": "4.6",
77
+ "vulkan": "1.4",
78
+ "openCL": "3.0",
79
+ "cuda": "8.9",
80
+ "shaderModel": "6.8",
81
+
82
+ "warpSize": 32,
83
+ "maxThreadsPerBlock": 1024,
84
+ "maxThreadsPerSM": 1536,
85
+ "maxBlocksPerSM": 24,
86
+ "sharedMemPerSM": 102400,
87
+ "registersPerSM": 65536,
88
+
89
+ "url": "https://www.techpowerup.com/gpu-specs/geforce-rtx-4090.c3889"
90
+ }
91
+ ```
92
+
93
+ Only populated fields are included — no nulls or zeros.
94
+
95
+ ## Usage
96
+
97
+ **Direct URL:**
98
+ ```
99
+ https://raw.githubusercontent.com/RightNowAI/gpu-database/main/data/nvidia/all.json
100
+ ```
101
+
102
+ **JavaScript:**
103
+ ```javascript
104
+ const gpus = await fetch(
105
+ 'https://raw.githubusercontent.com/RightNowAI/gpu-database/main/data/nvidia/all.json'
106
+ ).then(r => r.json());
107
+
108
+ const rtx4090 = gpus.find(g => g.name === 'GeForce RTX 4090');
109
+ console.log(rtx4090.cuda); // "8.9"
110
+ console.log(rtx4090.sharedMemPerSM); // 102400
111
+ console.log(rtx4090.coresPerSM); // 128
112
+ ```
113
+
114
+ **Python:**
115
+ ```python
116
+ import requests
117
+
118
+ gpus = requests.get(
119
+ 'https://raw.githubusercontent.com/RightNowAI/gpu-database/main/data/nvidia/all.json'
120
+ ).json()
121
+
122
+ rtx4090 = next(g for g in gpus if g['name'] == 'GeForce RTX 4090')
123
+ print(rtx4090['cuda']) # 8.9
124
+ print(rtx4090['maxThreadsPerSM']) # 1536
125
+ ```
126
+
127
+ ## Source
128
+
129
+ Data sourced from [TechPowerUp GPU Database](https://www.techpowerup.com/gpu-specs/) via [dbgpu](https://github.com/painebenjamin/dbgpu).
130
+
131
+ ## License
132
+
133
+ [Apache 2.0](LICENSE)
134
+
135
+ ---
136
+
137
+ Built by [RightNow](https://www.rightnowai.co)