Skip to content

Commit 4ff8626

Browse files
authored
Merge branch 'main' into token-from-env-in-snippets
2 parents 0f8335a + edf1051 commit 4ff8626

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

packages/tasks/src/hardware.ts

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ export interface HardwareSpec {
3131
memory?: number[];
3232
}
3333

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

3638
export const SKUS = {
3739
GPU: {
@@ -278,7 +280,7 @@ export const SKUS = {
278280
},
279281
"RTX 2080 Ti": {
280282
tflops: 26.9,
281-
memory: [11],
283+
memory: [11, 22], // 22GB: modded 2080ti
282284
},
283285
"RTX 2080": {
284286
tflops: 20.14,
@@ -340,6 +342,10 @@ export const SKUS = {
340342
tflops: 65.13,
341343
memory: [16],
342344
},
345+
T10: {
346+
tflops: 20.0,
347+
memory: [16],
348+
},
343349
V100: {
344350
tflops: 28.26,
345351
memory: [32, 16],
@@ -534,6 +540,15 @@ export const SKUS = {
534540
"Xeon 2th Generation (Cascade Lake)": {
535541
tflops: 0.55,
536542
},
543+
"Xeon E5v4 (Broadwell)": {
544+
tflops: 0.25,
545+
},
546+
"Xeon E5v3 (Haswell)": {
547+
tflops: 0.2,
548+
},
549+
"Xeon E5v2 (Ivy Bridge)": {
550+
tflops: 0.15,
551+
},
537552
"Intel Core Ultra 7 265KF": {
538553
tflops: 1.53,
539554
},

0 commit comments

Comments
 (0)