Skip to content

Commit 34edae3

Browse files
UsamaKenwaypcuenca
andauthored
update hardware.ts - Added specs for RTX 5000 series, L40s, mobile gpus (#1211)
This pull request updates the `hardware.ts` file to include the latest GPU specifications for various NVIDIA models The following GPUs have been added: - **H200**: 241.3 TFLOPS, 141 GB memory - **L40s**: 91.61 TFLOPS, 48 GB memory - **L20**: 59.35 TFLOPS, 48 GB memory - **L4**: 30.29 TFLOPS, 24 GB memory - **RTX 5090**: 104.8 TFLOPS, 32 GB memory - **RTX 5090 D**: 104.8 TFLOPS, 32 GB memory - **RTX 5080**: 56.28 TFLOPS, 16 GB memory - **RTX 5080 Mobile**: 24.58 TFLOPS, 16 GB memory - **RTX 5070**: 30.84 TFLOPS, 12 GB memory - **RTX 5070 Mobile**: 23.22 TFLOPS, 8 GB memory - **RTX 4090 Mobile**: 32.98 TFLOPS, 16 GB memory - **RTX 4080 Mobile**: 24.72 TFLOPS, 12 GB memory - **RTX 4070 Mobile**: 15.62 TFLOPS, 8 GB memory - **RTX 4060 Mobile**: 11.61 TFLOPS, 8 GB memory - **RTX 3080 Mobile**: 18.98 TFLOPS, 8 GB memory - **GTX 1050 Ti**: 2.1 TFLOPS (float32), 4 GB memory - **P100**: 19.05 TFLOPS, 16 GB memory source: ```techpowerup.com``` Co-authored-by: Pedro Cuenca <[email protected]>
1 parent 1efecd4 commit 34edae3

File tree

1 file changed

+69
-1
lines changed

1 file changed

+69
-1
lines changed

packages/tasks/src/hardware.ts

Lines changed: 69 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,30 @@ export const DEFAULT_MEMORY_OPTIONS = [8, 16, 24, 32, 40, 48, 64, 80, 96, 128, 2
3636
export const SKUS = {
3737
GPU: {
3838
NVIDIA: {
39+
H200: {
40+
tflops: 241.3,
41+
memory: [141],
42+
},
3943
H100: {
4044
tflops: 267.6,
4145
memory: [80],
4246
},
47+
L40s: {
48+
tflops: 91.61,
49+
memory: [48],
50+
},
4351
L40: {
4452
tflops: 90.52,
4553
memory: [48],
4654
},
55+
L20: {
56+
tflops: 59.35,
57+
memory: [48],
58+
},
59+
L4: {
60+
tflops: 30.29,
61+
memory: [24],
62+
},
4763
"RTX 6000 Ada": {
4864
tflops: 91.1,
4965
memory: [48],
@@ -100,6 +116,30 @@ export const SKUS = {
100116
tflops: 4.531, // source: https://www.techpowerup.com/gpu-specs/a2.c3848
101117
memory: [16],
102118
},
119+
"RTX 5090": {
120+
tflops: 104.8,
121+
memory: [32],
122+
},
123+
"RTX 5090 D": {
124+
tflops: 104.8,
125+
memory: [32],
126+
},
127+
"RTX 5080": {
128+
tflops: 56.28,
129+
memory: [16],
130+
},
131+
"RTX 5080 Mobile": {
132+
tflops: 24.58,
133+
memory: [16],
134+
},
135+
"RTX 5070": {
136+
tflops: 30.84,
137+
memory: [12],
138+
},
139+
"RTX 5070 Mobile": {
140+
tflops: 23.22,
141+
memory: [8],
142+
},
103143
"RTX 4090": {
104144
tflops: 82.58,
105145
memory: [24],
@@ -108,6 +148,10 @@ export const SKUS = {
108148
tflops: 79.49,
109149
memory: [24],
110150
},
151+
"RTX 4090 Mobile": {
152+
tflops: 32.98,
153+
memory: [16]
154+
},
111155
"RTX 4080 SUPER": {
112156
tflops: 52.2,
113157
memory: [16],
@@ -116,10 +160,18 @@ export const SKUS = {
116160
tflops: 48.7,
117161
memory: [16],
118162
},
163+
"RTX 4080 Mobile": {
164+
tflops: 24.72,
165+
memory: [12]
166+
},
119167
"RTX 4070": {
120168
tflops: 29.15,
121169
memory: [12],
122170
},
171+
"RTX 4070 Mobile": {
172+
tflops: 15.62,
173+
memory: [8]
174+
},
123175
"RTX 4070 Ti": {
124176
tflops: 40.09,
125177
memory: [12],
@@ -140,6 +192,10 @@ export const SKUS = {
140192
tflops: 22.06,
141193
memory: [8, 16],
142194
},
195+
"RTX 4060 Mobile": {
196+
tflops: 11.61,
197+
memory: [8]
198+
},
143199
"RTX 3090": {
144200
tflops: 35.58,
145201
memory: [24],
@@ -156,6 +212,10 @@ export const SKUS = {
156212
tflops: 34.1,
157213
memory: [12],
158214
},
215+
"RTX 3080 Mobile": {
216+
tflops: 18.98,
217+
memory: [8]
218+
},
159219
"RTX 3070": {
160220
tflops: 20.31,
161221
memory: [8],
@@ -164,7 +224,7 @@ export const SKUS = {
164224
tflops: 21.75,
165225
memory: [8],
166226
},
167-
"RTX 3070 Ti Laptop": {
227+
"RTX 3070 Ti Mobile": {
168228
tflops: 16.6,
169229
memory: [8],
170230
},
@@ -220,6 +280,10 @@ export const SKUS = {
220280
tflops: 3.9, // float32 (GPU does not support native float16)
221281
memory: [3, 6],
222282
},
283+
"GTX 1050 Ti": {
284+
tflops: 2.1, // float32 (GPU does not support native float16)
285+
memory: [4]
286+
},
223287
"RTX Titan": {
224288
tflops: 32.62,
225289
memory: [24],
@@ -248,6 +312,10 @@ export const SKUS = {
248312
tflops: 11.76, // float32 (GPU does not support native float16)
249313
memory: [24],
250314
},
315+
P100: {
316+
tflops: 19.05,
317+
memory: [16],
318+
},
251319
},
252320
AMD: {
253321
MI300: {

0 commit comments

Comments
 (0)