File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 1919 run : sudo apt install build-essential git libgtest-dev libhwloc-dev openssh-client libopenblas-dev liblapack-dev liblapacke-dev libfabric-dev libibverbs-dev infiniband-diags libboost-context-dev curl jq python3-pip python3-venv pkgconf wget sudo libopenmpi-dev
2020 - name : Installing meson, ninja and gcovr
2121 run : python3 -m pip install meson ninja gcovr
22+ - name : Install UCX
23+ - run : |
24+ wget https://github.com/openucx/ucx/releases/download/v1.15.0/ucx-1.15.0.tar.gz
25+ tar -zxf ucx-1.15.0.tar.gz
26+ cd ucx-1.15.0
27+ mkdir build
28+ cd build
29+ ../configure --prefix=/usr/local
30+ make -j8
31+ sudo make install
32+ rm -rf /ucx-1.15.0.tar.gz
33+ rm -rf /ucx-1.15.0
34+ - name : Install LPF
35+ - run : |
36+ git clone -b noc_extension --single-branch --depth 1 https://github.com/Algebraic-Programming/LPF.git $HOME/lpf
37+ cd $HOME/lpf
38+ git checkout noc_extension
39+ mkdir ./build
40+ cd ./build
41+ ../bootstrap.sh --prefix=/usr/local
42+ make -j8
43+ sudo make install || true
44+ sudo rm -rf $HOME/lpf
2245 - name : Updating submodules
2346 run : git submodule update --init --recursive
2447 - name :
You can’t perform that action at this time.
0 commit comments