Implement parallel Odd-Even Sort in MPI (Message Passing Interface
standard) with two approaches.
System:
MPI supported by:
- MPICH
Front node queue:
- Resource Manager: TORQUE-5.1.1.2
- Scheduler: Maui-3.3.1
Clusters:
- 1 + 8 nodes, each has:
- Intel Xeon CPU L5640 @2.27GHz (2x6-cores)
- 24 GB memory
- 2TB HDD Storage
- 1 + 4 nodes, each has:
- Intel Xeon CPU X5670 @2.93GHz (2x6-cores)
- 96 GB memory
- 2TB HDD Storage
- Network: connectd by
Infiniband
It's strictly limited. Each element can only be swapped with its adjacent elements in each operation. Only one element sent in each message.
The only restriction is that each MPI process can only send messages to its neighbor processes. The number of elements sent in each message can also be arbitrary. Advanced version should achieve better performance than basic version.
- Sctipt for submitting job through
qsub
- Define your work in
experiment.py
first. - Just execute it and fecth the output without any
*.sh
files!
- Define your work in
./experiment.py
- parse binary integers and print out
./tools/parse_int.py
- (not recommend) generate experimental shell jobs
./tools/experiment_gen.py ($testcase_number)
- validate the ouput and generate report of testing jobs
./tools/report.py ($testcase_number)