├── .gitignore ├── .project ├── .pydevproject ├── README ├── README.md ├── assembly_compilation_ARM └── main_original.s ├── assembly_compilation_x86_gcc └── main_original.s ├── configurationFiles ├── configuration-template-explanation.xml ├── configuration_ARM_IPC.xml ├── configuration_likwidPowerMeter.xml ├── configuration_x86_IPC.xml └── measurement │ ├── IPC.xml │ └── measurementLikwid.xml └── src ├── Algorithm.py ├── Fitness ├── DefaultFitness.py └── SimplicityTempFitness.py ├── Individual.py ├── Instruction.py ├── Measurement ├── Measurement.py ├── MeasurementIPC.py └── MeasurementLikwidPower.py ├── Operand.py ├── Population.py ├── __init__.py └── parseGeneticResults.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/.pydevproject -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/README.md -------------------------------------------------------------------------------- /assembly_compilation_ARM/main_original.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/assembly_compilation_ARM/main_original.s -------------------------------------------------------------------------------- /assembly_compilation_x86_gcc/main_original.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/assembly_compilation_x86_gcc/main_original.s -------------------------------------------------------------------------------- /configurationFiles/configuration-template-explanation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/configurationFiles/configuration-template-explanation.xml -------------------------------------------------------------------------------- /configurationFiles/configuration_ARM_IPC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/configurationFiles/configuration_ARM_IPC.xml -------------------------------------------------------------------------------- /configurationFiles/configuration_likwidPowerMeter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/configurationFiles/configuration_likwidPowerMeter.xml -------------------------------------------------------------------------------- /configurationFiles/configuration_x86_IPC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/configurationFiles/configuration_x86_IPC.xml -------------------------------------------------------------------------------- /configurationFiles/measurement/IPC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/configurationFiles/measurement/IPC.xml -------------------------------------------------------------------------------- /configurationFiles/measurement/measurementLikwid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/configurationFiles/measurement/measurementLikwid.xml -------------------------------------------------------------------------------- /src/Algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/Algorithm.py -------------------------------------------------------------------------------- /src/Fitness/DefaultFitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/Fitness/DefaultFitness.py -------------------------------------------------------------------------------- /src/Fitness/SimplicityTempFitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/Fitness/SimplicityTempFitness.py -------------------------------------------------------------------------------- /src/Individual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/Individual.py -------------------------------------------------------------------------------- /src/Instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/Instruction.py -------------------------------------------------------------------------------- /src/Measurement/Measurement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/Measurement/Measurement.py -------------------------------------------------------------------------------- /src/Measurement/MeasurementIPC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/Measurement/MeasurementIPC.py -------------------------------------------------------------------------------- /src/Measurement/MeasurementLikwidPower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/Measurement/MeasurementLikwidPower.py -------------------------------------------------------------------------------- /src/Operand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/Operand.py -------------------------------------------------------------------------------- /src/Population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/Population.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/parseGeneticResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolsForUarch/GeST/HEAD/src/parseGeneticResults.py --------------------------------------------------------------------------------