Skip to content

Update hardware.ts #718

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
May 30, 2024
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
46 changes: 39 additions & 7 deletions packages/tasks/src/hardware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@ export const SKUS = {
tflops: 31.24,
memory: [24],
},
T4: {
tflops: 65.13,
memory: [16],
},
"RTX 4090": {
tflops: 82.58,
memory: [24],
},
"RTX 4090D": {
tflops: 79.49,
memory: [24],
},
"RTX 4080 SUPER": {
tflops: 52.2,
memory: [16],
Expand Down Expand Up @@ -172,17 +172,37 @@ export const SKUS = {
tflops: 9.22,
memory: [6],
},
"GTX 1080 Ti": {
tflops: 11.34, // float32 (GPU does not support native float16)
memory: [11],
},
"GTX 1070 Ti": {
tflops: 8.2, // float32 (GPU does not support native float16)
memory: [8],
},
"RTX Titan": {
tflops: 32.62,
memory: [24],
},
"GTX 1650 Mobile": {
tflops: 6.39,
memory: [4],
},
T4: {
tflops: 65.13,
memory: [16],
},
V100: {
tflops: 28.26,
memory: [32, 16],
},
"GTX 1650 Mobile": {
tflops: 6.39,
memory: [4],
"Quadro P6000": {
tflops: 12.63, // float32 (GPU does not support native float16)
memory: [24],
},
P40: {
tflops: 11.76, // float32 (GPU does not support native float16)
memory: [24],
},
},
AMD: {
Expand Down Expand Up @@ -226,6 +246,18 @@ export const SKUS = {
tflops: 45.14,
memory: [16, 8],
},
"RX 6950 XT": {
tflops: 47.31,
memory: [16],
},
"RX 6800": {
tflops: 32.33,
memory: [16],
},
"Radeon Pro VII": {
tflops: 26.11,
memory: [16],
},
},
},
CPU: {
Expand Down
Loading