Repository untuk kit tugas besar IF3230 Sistem Paralel dan Terdistribusi 2023
- Use WSL or Linux environment and open terminal
- Update the Linux with this command
sudo apt-get update
sudo apt-get upgrade
- If you don't have C/C++ compiler, install with this command
sudo apt-get install build-essential
- Use Google Collab/Jupyter Notebook
- Compile all with this command
make all
- Compare serial and parallel with
make run-all file={insert testcase filename}
, e.g.make run-all file=32
- If you want to run only OpenMPI program, run with
make runmpi file={insert testcase filename}
, e.g.make runmpi file=32
- If you want to run only OpenMP program, run with
make runmp file={insert testcase filename}
, e.g.make runmp file=32
- Compile and run inside the Google Collab/Jupyter Notebook