diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-11-01 13:38:15 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-11-01 13:38:15 +0100 |
| commit | e5e51b083f82baa944a41ce1384f554cac7fc963 (patch) | |
| tree | 83eecc32660ad8f6fecfc75a541cb4a1a859ad62 /frontend | |
| parent | 91b38f216f3107d4be2fa26e78c3e6df674bcbca (diff) | |
Extend unit specifications with more models
This change adds more models to the unit specifications in order to be
able to build more advanced topologies.
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/src/util/unit-specifications.js | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/frontend/src/util/unit-specifications.js b/frontend/src/util/unit-specifications.js index 43c45b7e..28479edd 100644 --- a/frontend/src/util/unit-specifications.js +++ b/frontend/src/util/unit-specifications.js @@ -13,6 +13,27 @@ export const CPU_UNITS = { numberOfCores: 2, energyConsumptionW: 50, }, + 'cpu-3': { + _id: 'cpu-3', + name: 'Intel® Xeon® E-2224G', + clockRateMhz: 3500, + numberOfCores: 4, + energyConsumptionW: 71, + }, + 'cpu-4': { + _id: 'cpu-4', + name: 'Intel® Xeon® E-2244G', + clockRateMhz: 3800, + numberOfCores: 8, + energyConsumptionW: 71, + }, + 'cpu-5': { + _id: 'cpu-5', + name: 'Intel® Xeon® E-2246G', + clockRateMhz: 3600, + numberOfCores: 12, + energyConsumptionW: 80, + }, } export const GPU_UNITS = { @@ -23,6 +44,13 @@ export const GPU_UNITS = { numberOfCores: 200, energyConsumptionW: 250, }, + 'gpu-2': { + _id: 'gpu-2', + name: 'NVIDIA Tesla V100', + clockRateMhz: 1200, + numberOfCores: 5120, + energyConsumptionW: 250, + }, } export const MEMORY_UNITS = { @@ -33,6 +61,27 @@ export const MEMORY_UNITS = { sizeMb: 4000, energyConsumptionW: 10, }, + 'memory-2': { + _id: 'memory-2', + name: 'Samsung PC DRAM M393A2K43BB1-CRC', + speedMbPerS: 2400, + sizeMb: 16000, + energyConsumptionW: 10, + }, + 'memory-3': { + _id: 'memory-3', + name: 'Crucial MTA18ASF4G72PDZ-3G2E1', + speedMbPerS: 3200, + sizeMb: 32000, + energyConsumptionW: 10, + }, + 'memory-4': { + _id: 'memory-4', + name: 'Crucial MTA9ASF2G72PZ-3G2E1', + speedMbPerS: 3200, + sizeMb: 16000, + energyConsumptionW: 10, + }, } export const STORAGE_UNITS = { @@ -43,4 +92,11 @@ export const STORAGE_UNITS = { sizeMb: 250000, energyConsumptionW: 10, }, + 'storage-2': { + _id: 'storage-2', + name: 'Western Digital MTA9ASF2G72PZ-3G2E1', + speedMbPerS: 6000, + sizeMb: 4000000, + energyConsumptionW: 10, + }, } |
