Comparative Study of Python,C++, OpenMP
Comparative Study of Python,C++, OpenMP
To run OpenMp :
Compile : g++ -std=c++11 -fopenmp OMP_Matrix_Multiplication.cpp -o OMP_Matrix_Mult
Run : ./OMP_Matrix_Mult 10 10 10
To run Python :
Run : python python_matrix_multiplication.py 2 2 2
To run C++ :
Compile : g++ -pthread -std=c++11 Pthreads_Matrix_Multiplication.cpp -o threads_matrix_mult
Run : ./threads_matrix_mult