Skip to content
Merged
Changes from 1 commit
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
17 changes: 15 additions & 2 deletions packages/tasks/src/hardware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ 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 +278,7 @@ export const SKUS = {
},
"RTX 2080 Ti": {
tflops: 26.9,
memory: [11],
memory: [11, 22], //Modded 2080ti can be easily found in Taobao/Alibaba
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol, I'm not sure we should enter this rabbit hole, there are plenty of unofficial mods out there. Let's see how it goes cc @Vaibhavs10

},
"RTX 2080": {
tflops: 20.14,
Expand Down Expand Up @@ -340,6 +340,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 +538,15 @@ export const SKUS = {
"Xeon 2th Generation (Cascade Lake)": {
tflops: 0.55,
},
"Xeon E5v4 (Broadwell)": {
tflops: 0.25,
},
"Xeon E5v3 (Haswell)": {
tflops: 0.20,
},
"Xeon E5v2 (Ivy Bridge)": {
tflops: 0.15,
},
"Intel Core Ultra 7 265KF": {
tflops: 1.53,
},
Expand Down
Loading