Getting Started: SCALE-Sim in 30 seconds.


Installing the package

Getting started is simple! SCALE-Sim is completely written in python and is available both as a package and could be run from source.

You can install SCALE-Sim in your environment using the following command

$ pip3 install scalesim

Alternatively you can install the package from the source as well

$ python3 setup.py install

Launching a run

SCALE-Sim can be run by using the scale.py script from the repository and providing the paths to the architecture configuration, and the topology descriptor csv file.

$ python3 scale.py -c  -t 

Try it now in this jupyter notebook.


Running from source

The above method uses the installed package for running the simulator. In cases where you would like to run directly from the source, the following command should be used instead.

$ python3 /scalesim/scale.py -c  -t 

If you are running from sources for the first time and do not have all the dependencies installed, please install them first using the following command.

$ pip3 install -r /requirements.txt