Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install OpenBLAS for mxnet1.8.0 #2508

Merged
merged 3 commits into from
Mar 22, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup environment
run: |
sudo apt-get update
sudo apt-get -y install openmpi-bin libopenmpi-dev
sudo apt-get -y install openmpi-bin libopenmpi-dev libopenblas-dev

- name: Install
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Install (apt)
run: |
sudo apt-get update
sudo apt-get -y install openmpi-bin libopenmpi-dev
sudo apt-get -y install openmpi-bin libopenmpi-dev h
crcrpar marked this conversation as resolved.
Show resolved Hide resolved
- name: Install (Python)
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup environment
run: |
sudo apt-get update
sudo apt-get -y install openmpi-bin libopenmpi-dev
sudo apt-get -y install openmpi-bin libopenmpi-dev libopenblas-dev

- name: Install
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM python:${PYTHON_VERSION}
ENV PIP_OPTIONS "--no-cache-dir --progress-bar off"

RUN apt-get update \
&& apt-get -y install openmpi-bin libopenmpi-dev \
&& apt-get -y install openmpi-bin libopenmpi-dev libopenblas-dev\
crcrpar marked this conversation as resolved.
Show resolved Hide resolved
&& rm -rf /var/lib/apt/lists/* \
&& pip install --no-cache-dir -U pip \
&& pip install ${PIP_OPTIONS} -U setuptools
Expand Down