Minor change: ErrorStoreMode --> StoreMode

This commit is contained in:
Éder F. Zulian
2016-07-08 11:16:45 +02:00
parent 583aba998e
commit f3d28116b4
10 changed files with 111 additions and 101 deletions

View File

@@ -377,7 +377,8 @@ Enable the error model in fr_fcfs.xml.
<!-- Error Model: -->
<ErrorChipSeed value="42" />
<ErrorCSVFile value="../../DRAMSys/simulator/src/error/error.csv" />
<ErrorStoreMode value="ErrorModel" /> <!--3 Modes: NoStorage, Store (store data without errormodel), ErrorModel (store data with errormodel)-->
<!-- Modes: NoStorage, Store (store data without errormodel), ErrorModel (store data with errormodel) -->
<StoreMode value="ErrorModel" />
</memconfig>
```
@@ -638,7 +639,7 @@ Below are listed the configuration sections and configuration fields.
<!-- Error Modelling -->
<ErrorChipSeed value="42"/>
<ErrorCSVFile value="../../DRAMSys/simulator/src/error/error.csv" />
<ErrorStoreMode value="NoStorage"/>
<StoreMode value="NoStorage"/>
</memconfig>
```
@@ -673,7 +674,7 @@ Below are listed the configuration sections and configuration fields.
- Seed to initialize the random error generator.
- *ErrorCSVFile* (string)
- CSV file with error injection information.
- *ErrorStoreMode* (enum ErrorStorageMode)
- *StoreMode* (enum StorageMode)
- "NoStorage": no storage
- "Store": store data without error model
- "ErrorModel": store data with error model [6]