summaryrefslogtreecommitdiff
path: root/site/docs
diff options
context:
space:
mode:
authorDante Niewenhuis <d.niewenhuis@hotmail.com>2024-10-25 13:32:41 +0200
committerGitHub <noreply@github.com>2024-10-25 13:32:41 +0200
commit5a365dbc068f2a8cdfa9813c39cc84bb30e15637 (patch)
tree72716d562787b85e03cdc7fe1d30c827054d25a0 /site/docs
parent27f5b7dcb05aefdab9b762175d538931face0aba (diff)
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
Diffstat (limited to 'site/docs')
-rw-r--r--site/docs/documentation/Input/Topology.md4
-rw-r--r--site/docs/documentation/Input/TopologySchema.md12
-rw-r--r--site/docs/documentation/Output.md2
3 files changed, 9 insertions, 9 deletions
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"
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"
]
},
diff --git a/site/docs/documentation/Output.md b/site/docs/documentation/Output.md
index 176c8721..dbc2a765 100644
--- a/site/docs/documentation/Output.md
+++ b/site/docs/documentation/Output.md
@@ -33,7 +33,7 @@ The host output file, contains all metrics of related to the host run.
| timestamp | int64 | ms | Timestamp of the sample |
| absolute timestamp | int64 | ms | The absolute timestamp based on the given workload |
| host_id | binary | string | The id of the host given by OpenDC |
-| cpu_count | int32 | count | The number of available cpu cores |
+| cpu_count | int32 | count | The number of available cpuModel cores |
| mem_capacity | int64 | Mb | The amount of available memory |
| guests_terminated | int32 | count | The number of guests that are in a terminated state. |
| guests_running | int32 | count | The number of guests that are in a running state. |