Hi!
CoMeT: CoMeT is next-generation open-source EDA toolchain for integrated core-memory interval thermal simulations of 2D, 2.5, and 3D multi-/many-core processors. CoMeT (partially) subsumes the code of HotSniper.
An EDA toolchain for interval thermal simulations of 2D multi-/many-cores in an open system.
Details of HotSniper can be found in our ESL 2018 paper, and please consider citing this paper in your work if you find this tool useful in your research.
Pathania, Anuj, and Jörg Henkel. "HotSniper: Sniper-Based Toolchain for Many-Core Thermal Simulations in Open Systems." IEEE Embedded Systems Letters 11.2 (2018): 54-57.
Please refer to Hot Sniper User Manual to learn how to write custom scheduling policies that perform thermal-aware Dynamic Voltage Frequency Scaling (DVFS), Task Mapping, and Task Migration.
Found a Bug, Report Here! Have a Question, Ask Here!
No Direct Emails.
HotSniper compiles and runs inside a Docker container. Therefore, you need to download & install Docker. For more info: https://docs.docker.com/engine/install/ubuntu/
After installing Docker, make sure you are able to run it without needing sudo by following instructions here - https://docs.docker.com/engine/install/linux-postinstall/
Extract Pinplay 3.2 to the root HotSniper directory as pin_kit
tar xf pinplay-drdebug-3.2-pin-3.2-81205-gcc-linux.tar.gz
mv pinplay-drdebug-3.2-pin-3.2-81205-gcc-linux pin_kitAt this stage, the root HotSniper directory has a folder named pin_kit containing the PinPlay-3.2 library and a folder named hotspotcontaining the HotSpot simulator. Since you now have Docker installed, let's create a container using the shipped Dockerfile.
cd docker
sudo apt install make
make
make runNow that we are inside our container, we can build HotSniper and its requirements:
cd ..The [HotSpot] simulator is shipped with HotSniper. All you need to do is to compile it:
cd hotspot
make
cd ..makeRun inside container:
#setting $GRAPHITE_ROOT to HotSniper's root directory
export GRAPHITE_ROOT=$(pwd)
cd benchmarks
#setting $BENCHMARKS_ROOT to the benchmarks directory
export BENCHMARKS_ROOT=$(pwd)
#compiling the benchmarks
make
cd ..HotSniper is shipped with a simulationcontrol script that you can use to run batch simulations.
Run inside container:
cd simulationcontrol
PYTHONIOENCODING="UTF-8" python3 run.pyThe path of the results' directory can be set inside the simulationcontrol/config.py file.
Quickly list the finished simulations:
cd simulationcontrol
PYTHONIOENCODING="UTF-8" python3 parse_results.pyEach run is stored in a separate directory in the results directory (see 4). For quick visual check, many plots are automatically generated for you (IPS, power, etc).
To do your own (automated) evaluations, see the simulationcontrol.resultlib package for a set of helper functions to parse the results. See the source code of parse_results.py for a few examples.
- select technology node (22nm or larger)
config/base.cfg:power/technology_node
- V/f-levels
- check
scripts/energystats.py:build_dvfs_table(keep in mind that V/f-levels are specified at 22nm)
- check
- select high-level architecture
simulationcontrol/config.py:SNIPER_CONFIGandNUMBER_CORES
- set architectural parameters
config/base.cfgand other config files as specified in the previous step
- set scheduling and DVFS parameters
config/base.cfg:scheduler/open/*andscheduler/open/dvfs/*
- set
perf_model/core/frequency - start trial run to extract estimations from McPAT
- start a simulation based on
simulationcontrol/run.py:test_static_power, kill it after ~5ms simulated time - extract static power at low/high V/f levels from the command line output: take power of last / second-to-last core
- extract area of a core from
benchmarks/energystats-temp.txt: take processor area (including L3 cache etc.), divide by number of cores, and scale it to your technology node. If file is empty, start simulation again, kill it, and check again.
- start a simulation based on
- configure static power consumption
config/base.cfg:power/*inactive_powermust be set to static power consumption at min V/f level
- specify the floorplan with the
floorplanparameter, the corresponding the thermal model with thehotspot_configparameter and other thermal settings inconfigconfig/base.cfg:periodic_thermaltdpis defined by the floorplan, temperature limits and cooling parameters.- make sure that the
perf_model/cache/levelsis set to 3 if the floorplan has a L3 cache and it set to 2 if it does not. - The
hotspotdirectory contains floorplans and corresponding hotspot configurations for a four core, a sixteen core and a sixty-four core gainestown processor.
- To create a new floorplan use the
createscript from thefloorplanlibdirectory. For example to create a sixteen core gainestown floorplan run this command outside the docker environment:./create.py --cores 4x4 --subcore-template gainestown_core.flp --out gainestown_4x4- Copy the generated floorplan
gainestown_4x4.flpand the hotspot config filegainestown_4x4.hotspot_configfrom the generatedgainestown_4x4directory to thehotspotdirectory. And then set the configuration parametersfloorplanandhotspot_configinbase.cfgto point to these new floorplan and hotspot configuration files. - When you change the number of cores you will also need to update the
NUMBER_CORESas was mentioned above. - For larger floorplans we recommend changing the
-model_typetogridin the hotspot configuration file to speed the thermals calculation.
- To get track the wearout of the components enable the reliability modeling in the
reliabilitysection. - create your scenarios
simulationcontrol/run.py(e.g., similar todef example)
- set your output folder for traces
simulationcontrol/config.py:RESULTS_FOLDER- This folder usually is outside of the HotSniper folder because we don't want to commit results (large files) to the simulator repo.
- verify all configurations in
sim.cfgof a finished run
HotSniper supports program performance monitoring using the Heartbeat Framework. Several PARSEC programs are supported out of the box, which are: blackscholes, bodytrack, canneal, dedup, fluidanimate, streamcluster, swaptions and x264.
Enabling heartbeat functionality:
- Set
simulationcontrol/config.py::ENABLE_HEARTBEATSvariable toTrue - Add the "hb_enabled" string to the
base_configurationargument ofsimulationcontrol/run.py::run()function call.
The "simulationcontrol/run.py::run_multi()" function serves as a template for the second step.
With these two parameters set, the simulation will start with Heartbeat functionality enabled, resulting in the collection of heartbeat data files for each program, identified by the program app ids. A simulation running one program will result in the "0.hb.log" file, accompanied with the "0.hb.png" and "0.hb.histogram.png" visualizations.
UnicodeEncodeError: 'ascii' codec can't encode character '\xb0' in position 61: ordinal not in range(128)
export PYTHONIOENCODING="UTF-8"Sniper: http://snipersim.org
McPat: https://www.hpl.hp.com/research/mcpat/
HotSpot: http://lava.cs.virginia.edu/HotSpot/
HeartBeats: "https://github.com/libheartbeats/heartbeats"