Skip to content

Commit

Permalink
Some changes to the README file for our new changes and a change to o…
Browse files Browse the repository at this point in the history
…ur CI because we're dropping the clang-format version suffix
  • Loading branch information
daxpryce authored and harsha-simhadri committed Feb 25, 2022
1 parent e3a29ac commit 1d389df
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,16 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2
- run: |
sudo apt install cmake g++ libaio-dev libgoogle-perftools-dev clang-format-12 libboost-dev libmkl-full-dev
sudo apt install cmake g++ libaio-dev libgoogle-perftools-dev clang-format libboost-dev libmkl-full-dev
mkdir build && cd build && cmake .. && make -j
build-ubuntu-18:
runs-on: 'ubuntu-18.04'
steps:
- name: Checkout repository
uses: actions/checkout@v2
- run: |
sudo apt install cmake g++ libaio-dev libgoogle-perftools-dev clang-format-4.0 libboost-dev
sudo apt install cmake g++ libaio-dev libgoogle-perftools-dev clang-format libboost-dev
wget https://registrationcenter-download.intel.com/akdlm/irc_nas/18487/l_BaseKit_p_2022.1.2.146.sh
sudo sh l_BaseKit_p_2022.1.2.146.sh -a --components intel.oneapi.lin.mkl.devel --action install --install-dir /opt/intel/compilers_and_libraries --eula accept -s
ls -R /opt/intel
mkdir build && cd build && cmake .. && make -j
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,23 @@ See [guidelines](CONTRIBUTING.md) for contributing to this project.

## Linux build:

Install the following packages through apt-get, and Intel MKL either by downloading the installer or using [apt](https://software.intel.com/en-us/articles/installing-intel-free-libs-and-python-apt-repo) (we tested with build 2019.4-070).
```
sudo apt install cmake g++ libaio-dev libgoogle-perftools-dev clang-format-4.0 libboost-dev
Install the following packages through apt-get

```bash
sudo apt install cmake g++ libaio-dev libgoogle-perftools-dev clang-format libboost-dev
```

Build
### Install Intel MKL
#### Ubuntu 20.04
```bash
sudo apt install libmkl-full-dev
```

#### Earlier versions of Ubuntu
Install Intel MKL either by downloading the installer or using [apt](https://software.intel.com/en-us/articles/installing-intel-free-libs-and-python-apt-repo) (we tested with build 2019.4-070 and 2022.1.2.146).

### Build
```bash
mkdir build && cd build && cmake .. && make -j
```

Expand Down

0 comments on commit 1d389df

Please sign in to comment.