From f215467f3c7b2f4c5aaa78cce66d389d6367206d Mon Sep 17 00:00:00 2001 From: a-saraf Date: Thu, 25 Jan 2024 11:53:42 +0530 Subject: [PATCH 1/2] fixed name for rw train script and added readme desc for timeloop --- sims/Timeloop/README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 sims/Timeloop/README.md diff --git a/sims/Timeloop/README.md b/sims/Timeloop/README.md new file mode 100644 index 00000000..352ae90c --- /dev/null +++ b/sims/Timeloop/README.md @@ -0,0 +1,25 @@ +# Timeloop Simulator Documentation + +## Overview + +The Timeloop simulator is an architecture simulation tool for evaluating Deep Neural Network Accelerator designs. + +## Running the Simulator + +To run the simulator, you need to build the docker image first and run the docker container. Multiple agents can be used to run the simulator. + +1. Change directory to the Timeloop simulator +``` +cd sims/Timeloop +``` + +2. Build the docker image +``` +sudo ./build.sh +``` + +3. Run the docker container +``` +docker run timeloop_4_archgym --algo=aco +``` + From c4fe568468c4e10822daacb0441a548982e574a2 Mon Sep 17 00:00:00 2001 From: Anmol Saraf <81481005+nx6xe23@users.noreply.github.com> Date: Thu, 25 Jan 2024 12:04:07 +0530 Subject: [PATCH 2/2] Rename train_rw_timeloop.py to train_rw_Timeloop.py --- sims/Timeloop/{train_rw_timeloop.py => train_rw_Timeloop.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename sims/Timeloop/{train_rw_timeloop.py => train_rw_Timeloop.py} (100%) diff --git a/sims/Timeloop/train_rw_timeloop.py b/sims/Timeloop/train_rw_Timeloop.py similarity index 100% rename from sims/Timeloop/train_rw_timeloop.py rename to sims/Timeloop/train_rw_Timeloop.py