Chapter 3.3 : The script inside the container



The script starts as usual :
1
#!/bin/bash


Let's go in the /build directory we just bind :
1
cd /build


Then, we call cmake :
1
cmake /home/jovyan/Examples/FullHadamardProduct


Then, make :
1
make


Finally we can start performance tests and do some plots :
1
make plot_all


The full configuration :
1
2
3
4
5
6
#!/bin/bash

cd /build
cmake /home/jovyan/Examples/FullHadamardProduct
make
make plot_all
The file is avalaible here.