Some links to files fixed

This commit is contained in:
Éder F. Zulian
2017-11-07 16:01:27 +01:00
parent 003cb582a2
commit 58f44d319f

View File

@@ -184,7 +184,7 @@ From the build directory use the commands below to execute DRAMSys.
``` bash
$ cd simulator
$ ./dramSys
$ ./DRAMSys
```
From the build directory use the commands below to execute the traceAnalyzer.
@@ -305,7 +305,7 @@ $ qmake ../DRAMSys/DRAMSys.pro
$ make -j<number_jobs>
```
Now you can try to run DramSys and traceAnalyzer App inside folder simulator and analyzer, respectively
Now you can try to run DRAMSys and traceAnalyzer App inside folder simulator and traceAnalyzer, respectively
### DRAMSys Thermal Simulation
@@ -529,7 +529,7 @@ Below, the sub-configurations are listed and explained.
- **Simulator Configuration**
The content of
[ddr3.xml](DRAMSys/simulator/resources/configs/simulator/ddr3.xml) is
[ddr3.xml](DRAMSys/library/resources/configs/simulator/ddr3.xml) is
presented below as an example.
```xml
@@ -586,7 +586,7 @@ Below, the sub-configurations are listed and explained.
- **Temperature Simulator Configuration**
The content of
[config.xml](DRAMSys/simulator/resources/configs/thermalsim/config.xml) is
[config.xml](DRAMSys/library/resources/configs/thermalsim/config.xml) is
presented below as an example.
```xml
@@ -595,7 +595,7 @@ Below, the sub-configurations are listed and explained.
<StaticTemperatureDefaultValue value="89" />
<ThermalSimPeriod value="100" />
<ThermalSimUnit value="us" />
<PowerInfoFile value="../../DRAMSys/simulator/resources/configs/thermalsim/powerInfo.xml"/>
<PowerInfoFile value="../../DRAMSys/library/resources/configs/thermalsim/powerInfo.xml"/>
<IceServerIp value="127.0.0.1" />
<IceServerPort value="11880" />
<SimPeriodAdjustFactor value="10" />
@@ -646,7 +646,7 @@ Below, the sub-configurations are listed and explained.
XML files describe the address mapping to be used in the simulation.
The file [am_wideio.xml](DRAMSys/simulator/resources/configs/amconfigs/am_wideio.xml) is
The file [am_wideio.xml](DRAMSys/library/resources/configs/amconfigs/am_wideio.xml) is
a good example.
``` xml
@@ -679,7 +679,7 @@ Below, the sub-configurations are listed and explained.
- **Memory Configuration**
The content of [fifo.xml](DRAMSys/simulator/resources/configs/memconfigs/fifo.xml) is
The content of [fifo.xml](DRAMSys/library/resources/configs/memconfigs/fifo.xml) is
presented below as an example.
``` xml
@@ -694,7 +694,7 @@ Below, the sub-configurations are listed and explained.
<PowerDownTimeout value="100" />
<!-- Error Modelling -->
<ErrorChipSeed value="42" />
<ErrorCSVFile value="../../DRAMSys/simulator/src/error/error.csv" />
<ErrorCSVFile value="../../DRAMSys/library/src/error/error.csv" />
<!-- Modes:
- NoStorage,
- Store (store data without errormodel),
@@ -765,7 +765,7 @@ Resources of the simulator are available inside of the **resources** directory
and its sub-directories.
``` bash
$ cd DRAMSys/simulator/resources
$ cd DRAMSys/library/resources
```
A description of the content each directory follows.
@@ -824,7 +824,7 @@ Enable the error model in fr_fcfs.xml.
<PowerDownTimeout value="100" />
<!-- Error Model: -->
<ErrorChipSeed value="42" />
<ErrorCSVFile value="../../DRAMSys/simulator/src/error/error.csv" />
<ErrorCSVFile value="../../DRAMSys/library/src/error/error.csv" />
<!-- Modes: NoStorage, Store (store data without errormodel), ErrorModel (store data with errormodel) -->
<StoreMode value="ErrorModel" />
</memconfig>
@@ -840,7 +840,7 @@ $ ./generateErrorTest.pl > test_error.stl
Start the 3D-ICE server providing the stack file and the port number.
``` bash
$ cd DRAMSys/simulator/resources/configs/thermalsim
$ cd DRAMSys/library/resources/configs/thermalsim
$ 3D-ICE-Server stack.stk 11880
```