Skip to content
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

fix lint issues in hardware.ts #1234

Merged
merged 1 commit into from
Feb 27, 2025
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
12 changes: 6 additions & 6 deletions packages/tasks/src/hardware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export const SKUS = {
},
"RTX 4090 Mobile": {
tflops: 32.98,
memory: [16]
memory: [16],
},
"RTX 4080 SUPER": {
tflops: 52.2,
Expand All @@ -162,15 +162,15 @@ export const SKUS = {
},
"RTX 4080 Mobile": {
tflops: 24.72,
memory: [12]
memory: [12],
},
"RTX 4070": {
tflops: 29.15,
memory: [12],
},
"RTX 4070 Mobile": {
tflops: 15.62,
memory: [8]
memory: [8],
},
"RTX 4070 Ti": {
tflops: 40.09,
Expand All @@ -194,7 +194,7 @@ export const SKUS = {
},
"RTX 4060 Mobile": {
tflops: 11.61,
memory: [8]
memory: [8],
},
"RTX 3090": {
tflops: 35.58,
Expand All @@ -214,7 +214,7 @@ export const SKUS = {
},
"RTX 3080 Mobile": {
tflops: 18.98,
memory: [8]
memory: [8],
},
"RTX 3070": {
tflops: 20.31,
Expand Down Expand Up @@ -282,7 +282,7 @@ export const SKUS = {
},
"GTX 1050 Ti": {
tflops: 2.1, // float32 (GPU does not support native float16)
memory: [4]
memory: [4],
},
"RTX Titan": {
tflops: 32.62,
Expand Down