├── .gitignore ├── LICENSE ├── README.md ├── gamma.jpg ├── patches └── update_interface.patch ├── run_gamma_timeloop.sh ├── run_gamma_timeloop_multiObjective.sh └── src ├── README.md ├── gamma_timeloop_env.py ├── in_config ├── arch.yaml ├── problem.yaml └── sparse.yaml ├── main.py ├── parse_timeloop_output.py ├── report ├── Gamma-Timeloop.csv ├── Gamma-Timeloop.txt ├── arch.yaml ├── map.yaml ├── problem.yaml └── sparse.yaml ├── timeloop_env.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/README.md -------------------------------------------------------------------------------- /gamma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/gamma.jpg -------------------------------------------------------------------------------- /patches/update_interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/patches/update_interface.patch -------------------------------------------------------------------------------- /run_gamma_timeloop.sh: -------------------------------------------------------------------------------- 1 | cd src 2 | python main.py --fitness1 energy 3 | cd ../ -------------------------------------------------------------------------------- /run_gamma_timeloop_multiObjective.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/run_gamma_timeloop_multiObjective.sh -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/README.md -------------------------------------------------------------------------------- /src/gamma_timeloop_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/gamma_timeloop_env.py -------------------------------------------------------------------------------- /src/in_config/arch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/in_config/arch.yaml -------------------------------------------------------------------------------- /src/in_config/problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/in_config/problem.yaml -------------------------------------------------------------------------------- /src/in_config/sparse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/in_config/sparse.yaml -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/main.py -------------------------------------------------------------------------------- /src/parse_timeloop_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/parse_timeloop_output.py -------------------------------------------------------------------------------- /src/report/Gamma-Timeloop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/report/Gamma-Timeloop.csv -------------------------------------------------------------------------------- /src/report/Gamma-Timeloop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/report/Gamma-Timeloop.txt -------------------------------------------------------------------------------- /src/report/arch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/report/arch.yaml -------------------------------------------------------------------------------- /src/report/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/report/map.yaml -------------------------------------------------------------------------------- /src/report/problem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/report/problem.yaml -------------------------------------------------------------------------------- /src/report/sparse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/report/sparse.yaml -------------------------------------------------------------------------------- /src/timeloop_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/timeloop_env.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maestro-project/gamma-timeloop/HEAD/src/utils.py --------------------------------------------------------------------------------