Skip to content

Commit edf1051

Browse files
Add more hw options (#1498)
In this PR, I added some more hardware available in Hardware Settings: 1. Support more "RAM" option in CPU platform 2. Added following CPUs * Xeon E5v4, v3 (X99/C602 platform) * Xeon E5v2 (X79) platform 3. Added Tesla T10, which is made for cloud GPU/cloud gaming, they are pretty famous in Taobao or similar platform 4. Added 22GB option for RTX2080ti, it is for modded version. 22GB 2080ti is very famous in Taobao as well The TFlops spec is from TechPowerUp --------- Co-authored-by: Pedro Cuenca <[email protected]>
1 parent 0416cec commit edf1051

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)