Makefile use
1. Run DungeonHunterParallel:
- To run with default parameters:
make run
- To run with parameters:
make run ARGS=”100 0.2 1”
2. Validation:
note: this generates a new image for serial and parallel using the given args
- Check if images are the same with python3:
make checkPython ARGS=”100 0.2 1”
- Check if images are the same with java:
make checkJava ARGS=”100 0.2 1”
3. Run Tests:
- Run serial and parallel programs each 15 times and find average speedup:
make test ARGS=”100 0.2 1”