summaryrefslogtreecommitdiff
path: root/resources/topologies
diff options
context:
space:
mode:
authormjkwiatkowski <mati.rewa@gmail.com>2026-06-15 19:35:52 +0200
committermjkwiatkowski <mati.rewa@gmail.com>2026-06-15 19:35:52 +0200
commitc2a4d3657d148c643eaa319bfdc8a5b5bfe53412 (patch)
tree4a32279fe0f701cf718ffd0af37440a620ed3f9e /resources/topologies
parent960b6156cf36f19f4074e2d762363db12548e9e3 (diff)
feat: added build.sh which exports OpenDC to a .bin file
Diffstat (limited to 'resources/topologies')
-rw-r--r--resources/topologies/surf.json25
-rw-r--r--resources/topologies/surf_medium.json25
-rw-r--r--resources/topologies/surf_small.json25
3 files changed, 75 insertions, 0 deletions
diff --git a/resources/topologies/surf.json b/resources/topologies/surf.json
new file mode 100644
index 00000000..ae438dac
--- /dev/null
+++ b/resources/topologies/surf.json
@@ -0,0 +1,25 @@
+{
+ "clusters":
+ [
+ {
+ "name": "C01",
+ "hosts" :
+ [
+ {
+ "name": "H01",
+ "cpu": {
+ "coreCount": 16,
+ "coreSpeed": 2100
+ },
+ "memory": {
+ "memorySize": 128000000
+ },
+ "count": 277
+ }
+ ],
+ "powerSource": {
+ "carbonTracePath": "resources/carbon_traces/NL_2021-2024.parquet"
+ }
+ }
+ ]
+} \ No newline at end of file
diff --git a/resources/topologies/surf_medium.json b/resources/topologies/surf_medium.json
new file mode 100644
index 00000000..6afc2475
--- /dev/null
+++ b/resources/topologies/surf_medium.json
@@ -0,0 +1,25 @@
+{
+ "clusters":
+ [
+ {
+ "name": "C01",
+ "hosts" :
+ [
+ {
+ "name": "H01",
+ "cpu": {
+ "coreCount": 16,
+ "coreSpeed": 2100
+ },
+ "memory": {
+ "memorySize": 128000000
+ },
+ "count": 200
+ }
+ ],
+ "powerSource": {
+ "carbonTracePath": "resources/carbon_traces/NL_2021-2024.parquet"
+ }
+ }
+ ]
+} \ No newline at end of file
diff --git a/resources/topologies/surf_small.json b/resources/topologies/surf_small.json
new file mode 100644
index 00000000..8c3d8ce3
--- /dev/null
+++ b/resources/topologies/surf_small.json
@@ -0,0 +1,25 @@
+{
+ "clusters":
+ [
+ {
+ "name": "C01",
+ "hosts" :
+ [
+ {
+ "name": "H01",
+ "cpu": {
+ "coreCount": 16,
+ "coreSpeed": 2100
+ },
+ "memory": {
+ "memorySize": 128000000
+ },
+ "count": 100
+ }
+ ],
+ "powerSource": {
+ "carbonTracePath": "resources/carbon_traces/NL_2021-2024.parquet"
+ }
+ }
+ ]
+} \ No newline at end of file