美文网首页
并行程序性能分析软件(Extra-P和 Score-P)安装过程

并行程序性能分析软件(Extra-P和 Score-P)安装过程

作者: HaoMengHIT | 来源:发表于2019-03-16 09:37 被阅读0次

    Extra-P配置安装

    安装位置

    • 实验室台式机虚拟机Ubuntukylin17.10

    软件包依赖

    • QT4 或 QT5
    • Cube(>=4.3)
    • Python3
    • PyQT
    • MatPlotlib

    安装过程

    • 安装Qt4或Qt5
    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
    
    • 安装python3
    sudo apt-get install python3
    
    • 安装PyQt
    sudo apt-get install pyqt4-dev-tools
    sudo apt-get install pyqt5-dev-tools
    
    • 安装Cube
      下载Cube源码包cube-4.3.tar.gz
    ./configure
    make
    make all
    

    使用QT5的话编译过程中会出现一些问题,选用Qt4能正常编译

    • 安装 MatPlotLib
    sudo apt-get install python3-pip
    sudo python -m pip install -U pip
    sudo python -m pip install -U matplotlib
    

    编译Extra-P

    mkdir build
    cd build
    ../configure --with-cube=/opt/cube CPPFLAGS="-I/usr/include/python3.6m/"
    make
    make install
    

    score-P配置安装

    mkdir build
    cd build
    ../configure 
    make
    make install
    

    相关文章

      网友评论

          本文标题:并行程序性能分析软件(Extra-P和 Score-P)安装过程

          本文链接:https://www.haomeiwen.com/subject/kesjmqtx.html