并行程序性能分析软件(Extra-P和Score-P)安装过程
Post:2019-07-31 20:33:44
Tags:/
并行
/
Visit:
安装位置
- 实验室台式机虚拟机Ubuntukylin17.10
软件包依赖
- QT4 或 QT5
- Cube(>=4.3)
- Python3
- PyQT
- MatPlotlib
安装过程
1 2 3 4
| sudo apt-get install qt4-default sudo apt-get install qt5-default sudo apt-get install qt4-dev-tools sudo apt-get install qt5-dev-tools
|
1
| sudo apt-get install python3
|
1 2
| sudo apt-get install pyqt4-dev-tools sudo apt-get install pyqt5-dev-tools
|
下载Cube源码包cube-4.3.tar.gz
1 2 3
| ./configure make make all
|
使用QT5的话编译过程中会出现一些问题,选用Qt4能正常编译
1 2 3
| sudo apt-get install python3-pip sudo python -m pip install -U pip sudo python -m pip install -U matplotlib
|
1 2 3 4 5
| mkdir build cd build ../configure --with-cube=/opt/cube CPPFLAGS="-I/usr/include/python3.6m/" make make install
|
score-P配置安装
1 2 3 4 5
| mkdir build cd build ../configure make make install
|