Skip to content

Simulator framework for analysis of performance, energy consumption, area and cost of multi-node multi-chiplet tile-based manycore designs

License

Notifications You must be signed in to change notification settings

morenes/muchiSim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

muchiSim

A multi-chip multi-chiplet Simulator for data-centric execution. Particularly suited for simulating large compositions of manycore chips with a partitioned global address space (PGAS).

muchiSim

Requirements

This simulator is written entirely in C/C++. It has been tested with G++ version 12 and 13. It requires OpenMP. The scripts inside the plots folder require Python version 3. These scripts parse the simulator traces generated by the experiments to create plots.

Usage

Because many parameters are passed as macros, the simulator is compiled every time that a new experiment is launched. There are scripts that launch experiments. Those are stored in the exp/ folder. For example one can use the following command to run Sparse Matrix Vector Multiplication (SPMV), which corresponds to application #4 from the 7 applications that are included in this simulator by default.

exp/run_app.sh 4 0 A

The '0' refers to the configuration set inside the run_app.sh script. The 'A' refers to the name we are giving to the experiment. This 'A' is also considered the name for the binary created inside the bin folder.

Simulator parameters

The simulator has many configuration parameters inside src/configs. Other parameters are set as C macros inside exp/run.sh which is the file where the simulator gets compiled. The reason why some parameters are macros is for simulation efficiency, so that the code inside the ifdef macros is only executed if that parameter is set.

Folder structure

src containss the source files of the simulator

doall contain the sequential or doall implementations of some of the applications included as benchmarks inside this simulator.

sim_logs is the folder where simulation traces are generated into.

bin contains the binary files created by the compilation of different experiments.

datasets contains the datasets in binary format and TSV format.

exp contains experiments scrips.

gui contains a PyQt5 GUI to show plots based on simulation traces. (Installation instructions contained inside that folder.)

plots contains python scripts to plot heatmaps and other characterization plots for different experiments.

More information

More information about muchiSim concepts are found on src/README.md

Research using MuchiSim

MuchiSim has helped evaluating "Tascade: Hardware Support for Atomic-free, Asynchronous and Efficient Reduction Trees ", and "DCRA: A Distributed Chiplet-based Reconfigurable Architecture for Irregular Applications".

The artifacts are available for both Tascade and DCRA.

About

Simulator framework for analysis of performance, energy consumption, area and cost of multi-node multi-chiplet tile-based manycore designs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 49.9%
  • C 30.3%
  • Python 15.3%
  • Shell 4.4%
  • Makefile 0.1%