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/Topology.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'site/docs/documentation/Input/Topology.md') diff --git a/site/docs/documentation/Input/Topology.md b/site/docs/documentation/Input/Topology.md index 12e9c485..cf726616 100644 --- a/site/docs/documentation/Input/Topology.md +++ b/site/docs/documentation/Input/Topology.md @@ -21,7 +21,7 @@ In the following section, we describe the different components of the schema. |------------|-----------------------|-----------|---------|--------------------------------------------------------------------------------| | name | string | no | Host | The name of the host. This is only important for debugging and post-processing | | count | integer | no | 1 | The amount of hosts of this type are in the cluster | -| cpu | [CPU](#cpu) | yes | N/A | The CPUs in the host | +| cpuModel | [CPU](#cpuModel) | yes | N/A | The CPUs in the host | | memory | [Memory](#memory) | yes | N/A | The memory used by the host | | power model | [Power Model](#power-model) | yes | N/A | The power model used to determine the power draw of the host | @@ -192,7 +192,7 @@ Aside from using number to indicate values it is also possible to define values [ { "name": "H01", - "cpu": + "cpuModel": { "coreCount": 8, "coreSpeed": "3.2 Ghz" -- cgit v1.2.3