Skip to content

Commit

Permalink
enabling intel (#545)
Browse files Browse the repository at this point in the history
* enabling intel

* making windows tests run again
  • Loading branch information
K20shores committed Jun 3, 2024
1 parent 2bcb2af commit ef13000
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker_and_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- Dockerfile.no_json
- Dockerfile.nvhpc
- Dockerfile.openmp
# - Dockerfile.intel Disabling until #541 is fixed
- Dockerfile.intel
# - Dockerfile.mpi
steps:
- name: Checkout code
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ concurrency:

jobs:
mingw:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: windows-2019
strategy:
matrix:
Expand All @@ -34,7 +33,6 @@ jobs:
ctest -C Debug --rerun-failed --output-on-failure . --verbose
msvc2019:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: windows-2019
strategy:
matrix:
Expand All @@ -54,7 +52,6 @@ jobs:
run: cd build ; ctest -j 10 -C ${{ matrix.build_type }} --output-on-failure

msvc2022:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: windows-2022
strategy:
matrix:
Expand All @@ -71,7 +68,6 @@ jobs:
run: cd build ; ctest -j 10 -C ${{ matrix.build_type }} --output-on-failure

clang:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: windows-2019
strategy:
matrix:
Expand All @@ -89,7 +85,6 @@ jobs:
run: cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure

clang-cl-11:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: windows-2019
strategy:
matrix:
Expand Down
6 changes: 6 additions & 0 deletions docker/Dockerfile.intel
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# versions and sizes from here: https://hub.docker.com/r/intel/oneapi-hpckit/tags
FROM intel/oneapi-hpckit:latest

# Based off of this: https://dgpu-docs.intel.com/driver/installation.html#repository-public-key-used-for-package-and-repository-signing
# however those docs (at the time of this writing are incorrect) and this is the correct url
# community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Cannot-update-any-packages-using-intel-oneapi-hpckit-latest/m-p/1603192#M36169
RUN wget -qO - https://repositories.intel.com/gpu/intel-graphics.key | \
gpg --yes --dearmor --output /usr/share/keyrings/intel-graphics-archive-keyring.gpg

RUN apt update \
&& apt -y install \
build-essential \
Expand Down

0 comments on commit ef13000

Please sign in to comment.