From 5a365dbc068f2a8cdfa9813c39cc84bb30e15637 Mon Sep 17 00:00:00 2001 From: Dante Niewenhuis Date: Fri, 25 Oct 2024 13:32:41 +0200 Subject: Rewrote the FlowEngine (#256) * Removed unused components. Updated tests. Improved checkpointing model Improved model, started with SimPowerSource implemented FailureModels and Checkpointing First working version midway commit first update All simulation are now run with a single CPU and single MemoryUnit. multi CPUs are combined into one. This is for performance and explainability. * fixed merge conflicts * Updated M3SA paths. * Fixed small typo --- site/docs/documentation/Input/TopologySchema.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'site/docs/documentation/Input/TopologySchema.md') diff --git a/site/docs/documentation/Input/TopologySchema.md b/site/docs/documentation/Input/TopologySchema.md index 9c4e0c40..d0199568 100644 --- a/site/docs/documentation/Input/TopologySchema.md +++ b/site/docs/documentation/Input/TopologySchema.md @@ -5,8 +5,8 @@ A topology file can be validated using a JSON schema validator, such as https:// { "$schema": "OpenDC/Topology", "$defs": { - "cpu": { - "description": "definition of a cpu", + "cpuModel": { + "description": "definition of a cpuModel", "type": "object", "properties": { "vendor": { @@ -25,7 +25,7 @@ A topology file can be validated using a JSON schema validator, such as https:// "type": "integer" }, "coreSpeed": { - "description": "The core speed of the cpu in Mhz", + "description": "The core speed of the cpuModel in Mhz", "type": "number" }, "count": { @@ -106,15 +106,15 @@ A topology file can be validated using a JSON schema validator, such as https:// "type": "integer", "default": 1 }, - "cpu": { - "$ref": "#/$defs/cpu" + "cpuModel": { + "$ref": "#/$defs/cpuModel" }, "memory": { "$ref": "#/$defs/memory" } }, "required": [ - "cpu", + "cpuModel", "memory" ] }, -- cgit v1.2.3