Ako netko slučajno koristi Ubuntu i VSCode, imao sam problema pa možda bude od pomoći…
Znači, prvo instalirajte openMPI:
$ sudo apt install libopenmpi-dev
U VSCode trebate imati instaliran dodatak:
C/C++ IntelliSense, debugging, and code browsing.
Kada je to sve spremno, stvorite novu datoteku u nekom direktoriju i kopirate neki kod sa službene stranice predmeta (main.c npr.):
#include "mpi.h"
#include <stdio.h>
int main(int argc, char** argv) {
// Initialize the MPI environment
MPI_Init(NULL, NULL);
// Get the number of processes
int world_size;
MPI_Comm_size(MPI_COMM_WORLD, &world_size);
// Get the rank of the process
int world_rank;
MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
// Get the name of the processor
char processor_name[MPI_MAX_PROCESSOR_NAME];
int name_len;
MPI_Get_processor_name(processor_name, &name_len);
// Print off a hello world message
printf("Hello world from processor %s, rank %d"
" out of %d processors\n",
processor_name, world_rank, world_size);
// Finalize the MPI environment.
MPI_Finalize();
}
Sada bi trebalo sve vezano za mpi biti podcrtano, iduće što bi trebalo napraviti je pokrenuti program (ja sam to napravio Run -> Start Debugging -> C++ GDB/LLDB -> gcc - Build and debug active files) -> to se napravi samo zato da bi se .vscode direktorij stvorio
Kad se on stvori, sve što je u njemu se izbriše i doda se datoteka imena c_cpp_properties.json koja izgleda ovako:
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/lib/x86_64-linux-gnu/openmpi/include"
],
"defines": [],
"compilerPath": "/usr/bin/mpicc",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
Nakon toga se ide na “Run -> Start debugging -> C++ GDB/LLDB -> mpicc - Build and debug active files”
Kad se završi debagiranje u terminalu se pokrene sljedeća naredba
mpirun -np 5 --oversubscribe ./main
koja bi trebala rezultirati sljedećim ispisom ili sličnom ovome
Hello world from processor ime_racunala, rank 1 out of 5 processors
Hello world from processor ime_racunala, rank 3 out of 5 processors
Hello world from processor ime_racunala, rank 4 out of 5 processors
Hello world from processor ime_racunala, rank 0 out of 5 processors
Hello world from processor ime_racunala, rank 2 out of 5 processors
Nadam se da će nekome bit od pomoći