Skip to content

Commit 6e23031

Browse files
Add more hw options
1 parent 80e27d6 commit 6e23031

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

packages/tasks/src/hardware.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ 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 = [8, 16, 24, 32, 40, 48, 64, 80, 96, 128, 192, 256, 384, 512, 768, 1024, 1536, 2048];
3535

3636
export const SKUS = {
3737
GPU: {
@@ -278,7 +278,7 @@ export const SKUS = {
278278
},
279279
"RTX 2080 Ti": {
280280
tflops: 26.9,
281-
memory: [11],
281+
memory: [11, 22], //Modded 2080ti can be easily found in Taobao/Alibaba
282282
},
283283
"RTX 2080": {
284284
tflops: 20.14,
@@ -340,6 +340,10 @@ export const SKUS = {
340340
tflops: 65.13,
341341
memory: [16],
342342
},
343+
T10: {
344+
tflops: 20.0,
345+
memory: [16],
346+
},
343347
V100: {
344348
tflops: 28.26,
345349
memory: [32, 16],
@@ -534,6 +538,15 @@ export const SKUS = {
534538
"Xeon 2th Generation (Cascade Lake)": {
535539
tflops: 0.55,
536540
},
541+
"Xeon E5v4 (Broadwell)": {
542+
tflops: 0.25,
543+
},
544+
"Xeon E5v3 (Haswell)": {
545+
tflops: 0.20,
546+
},
547+
"Xeon E5v2 (Ivy Bridge)": {
548+
tflops: 0.15,
549+
},
537550
"Intel Core Ultra 7 265KF": {
538551
tflops: 1.53,
539552
},

0 commit comments

Comments
 (0)