Skip to content

Add more hw options #1498

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 4 commits into from
Jun 4, 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
19 changes: 17 additions & 2 deletions packages/tasks/src/hardware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ export interface HardwareSpec {
memory?: number[];
}

export const DEFAULT_MEMORY_OPTIONS = [8, 16, 24, 32, 40, 48, 64, 80, 96, 128, 256, 512];
export const DEFAULT_MEMORY_OPTIONS = [
8, 16, 24, 32, 40, 48, 64, 80, 96, 128, 192, 256, 384, 512, 768, 1024, 1536, 2048,
];

export const SKUS = {
GPU: {
Expand Down Expand Up @@ -278,7 +280,7 @@ export const SKUS = {
},
"RTX 2080 Ti": {
tflops: 26.9,
memory: [11],
memory: [11, 22], // 22GB: modded 2080ti
},
"RTX 2080": {
tflops: 20.14,
Expand Down Expand Up @@ -340,6 +342,10 @@ export const SKUS = {
tflops: 65.13,
memory: [16],
},
T10: {
tflops: 20.0,
memory: [16],
},
V100: {
tflops: 28.26,
memory: [32, 16],
Expand Down Expand Up @@ -534,6 +540,15 @@ export const SKUS = {
"Xeon 2th Generation (Cascade Lake)": {
tflops: 0.55,
},
"Xeon E5v4 (Broadwell)": {
tflops: 0.25,
},
"Xeon E5v3 (Haswell)": {
tflops: 0.2,
},
"Xeon E5v2 (Ivy Bridge)": {
tflops: 0.15,
},
"Intel Core Ultra 7 265KF": {
tflops: 1.53,
},
Expand Down
Loading