项目作者: shikhashah2627

项目描述 :
Comparative Study of Python,C++, OpenMP
高级语言: C++
项目地址: git://github.com/shikhashah2627/Python_Performance.git
创建时间: 2018-07-30T01:35:33Z
项目社区:https://github.com/shikhashah2627/Python_Performance

开源协议:

下载


Python_Performance Comparision:

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