Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 69 additions & 1 deletion packages/tasks/src/hardware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,30 @@ export const DEFAULT_MEMORY_OPTIONS = [8, 16, 24, 32, 40, 48, 64, 80, 96, 128, 2
export const SKUS = {
GPU: {
NVIDIA: {
H200: {
tflops: 241.3,
memory: [141],
},
H100: {
tflops: 267.6,
memory: [80],
},
L40s: {
tflops: 91.61,
memory: [48],
},
L40: {
tflops: 90.52,
memory: [48],
},
L20: {
tflops: 59.35,
memory: [48],
},
L4: {
tflops: 30.29,
memory: [24],
},
"RTX 6000 Ada": {
tflops: 91.1,
memory: [48],
Expand Down Expand Up @@ -100,6 +116,30 @@ export const SKUS = {
tflops: 4.531, // source: https://www.techpowerup.com/gpu-specs/a2.c3848
memory: [16],
},
"RTX 5090": {
tflops: 104.8,
memory: [32],
},
"RTX 5090 D": {
tflops: 104.8,
memory: [32],
},
"RTX 5080": {
tflops: 56.28,
memory: [16],
},
"RTX 5080 Mobile": {
tflops: 24.58,
memory: [16],
},
"RTX 5070": {
tflops: 30.84,
memory: [12],
},
"RTX 5070 Mobile": {
tflops: 23.22,
memory: [8],
},
"RTX 4090": {
tflops: 82.58,
memory: [24],
Expand All @@ -108,6 +148,10 @@ export const SKUS = {
tflops: 79.49,
memory: [24],
},
"RTX 4090 Mobile": {
tflops: 32.98,
memory: [16]
},
"RTX 4080 SUPER": {
tflops: 52.2,
memory: [16],
Expand All @@ -116,10 +160,18 @@ export const SKUS = {
tflops: 48.7,
memory: [16],
},
"RTX 4080 Mobile": {
tflops: 24.72,
memory: [12]
},
"RTX 4070": {
tflops: 29.15,
memory: [12],
},
"RTX 4070 Mobile": {
tflops: 15.62,
memory: [8]
},
"RTX 4070 Ti": {
tflops: 40.09,
memory: [12],
Expand All @@ -140,6 +192,10 @@ export const SKUS = {
tflops: 22.06,
memory: [8, 16],
},
"RTX 4060 Mobile": {
tflops: 11.61,
memory: [8]
},
"RTX 3090": {
tflops: 35.58,
memory: [24],
Expand All @@ -156,6 +212,10 @@ export const SKUS = {
tflops: 34.1,
memory: [12],
},
"RTX 3080 Mobile": {
tflops: 18.98,
memory: [8]
},
"RTX 3070": {
tflops: 20.31,
memory: [8],
Expand All @@ -164,7 +224,7 @@ export const SKUS = {
tflops: 21.75,
memory: [8],
},
"RTX 3070 Ti Laptop": {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Btw this broke some users - resulting in 500s on HF due to discrepancy between DB data & code data (not a big deal)

"RTX 3070 Ti Mobile": {
tflops: 16.6,
memory: [8],
},
Expand Down Expand Up @@ -220,6 +280,10 @@ export const SKUS = {
tflops: 3.9, // float32 (GPU does not support native float16)
memory: [3, 6],
},
"GTX 1050 Ti": {
tflops: 2.1, // float32 (GPU does not support native float16)
memory: [4]
},
"RTX Titan": {
tflops: 32.62,
memory: [24],
Expand Down Expand Up @@ -248,6 +312,10 @@ export const SKUS = {
tflops: 11.76, // float32 (GPU does not support native float16)
memory: [24],
},
P100: {
tflops: 19.05,
memory: [16],
},
},
AMD: {
MI300: {
Expand Down
Loading