1234567891011 |
- # Output message for the user
- echo "We are installing the dependencies"
- sleep 10
- # Install all the dependencies needed for compiling the runtime, the benchmarks and the power measurement utility
- sudo apt-get update && sudo apt-get upgrade -y
- sudo apt-get install -y vim build-essential flex bison libtool libncurses5* git-core htop cmake libhwloc-dev libclang-3.8-dev clang-3.8 and llvm-3.8-dev zlib1g ocl-icd-libopencl1 clinfo libglew-dev time gnuplot clinfo ocl-icd-dev ocl-icd-opencl-dev qt4-qmake libqt4-dev libusb-1.0-0-dev
- # Install the python dependencies for the creation of the charts with python
- sudo apt-get install python python-tk
- sudo -H pip install numpy matplotlib seaborn
|