Skip to content

Commit

Permalink
Update oneapi and nvhpc base containers, remove centos:8 container bu…
Browse files Browse the repository at this point in the history
…ilds
  • Loading branch information
samcmill committed Jun 1, 2022
1 parent 5a3d8b8 commit acb58f4
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 114 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
- amazonlinux2-llvm
- centos7-gnu
- centos7-llvm
- centos8-gnu
- centos8-llvm
- nvhpc
- oneapi
- rockylinux8-gnu
Expand Down
52 changes: 0 additions & 52 deletions containers/Dockerfile.centos8-gnu

This file was deleted.

56 changes: 0 additions & 56 deletions containers/Dockerfile.centos8-llvm

This file was deleted.

2 changes: 1 addition & 1 deletion containers/Dockerfile.nvhpc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# wassail container

FROM nvcr.io/nvidia/nvhpc:21.7-devel-cuda11.4-ubuntu20.04
FROM nvcr.io/nvidia/nvhpc:22.3-devel-cuda11.6-ubuntu20.04

# Python
RUN apt-get update -y && \
Expand Down
2 changes: 1 addition & 1 deletion containers/Dockerfile.oneapi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# wassail container

FROM intel/oneapi-hpckit:2021.3-devel-ubuntu18.04
FROM intel/oneapi-hpckit:devel-ubuntu18.04

# Python
RUN apt-get update -y && \
Expand Down
4 changes: 2 additions & 2 deletions containers/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
apt = []

if toolset == 'nvhpc':
Stage0 += baseimage(image='nvcr.io/nvidia/nvhpc:21.7-devel-cuda11.4-ubuntu20.04')
Stage0 += baseimage(image='nvcr.io/nvidia/nvhpc:22.3-devel-cuda11.6-ubuntu20.04')
toolchain = hpccm.toolchain(CC='nvc', CXX='nvc++', CXXFLAGS='-O1')
elif toolset == 'oneapi':
Stage0 += baseimage(image='intel/oneapi-hpckit:2021.3-devel-ubuntu18.04')
Stage0 += baseimage(image='intel/oneapi-hpckit:devel-ubuntu18.04')
toolchain = hpccm.toolchain(CC='icx', CXX='icpx')
else:
if image == 'ubuntu:20.04':
Expand Down

0 comments on commit acb58f4

Please sign in to comment.