Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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/ci_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
runs-on: ubuntu-latest

container:
image: brownbaerchen/libpressio:amd64
image: brownbaerchen/libpressio:amd64_2
volumes:
- ${{ github.workspace }}:/pySDC

Expand Down
2 changes: 1 addition & 1 deletion pySDC/projects/compression/Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt update -y && apt install -y cmake ccache pkg-config python3 pip mpich

# Install libpressio with Python and SZ3 support
RUN spack install libpressio+python+sz3
RUN spack install libpressio+mgard+python+sz+sz3 +szauto+zfp +bitgrooming+digitrounding+fpzip+openmp+qoz+blosc ^sz@master+stats+random_access+time_compression

# Prepare an entrypoint that installs pySDC
COPY docker_entrypoint.sh /bin/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from pySDC.core.ConvergenceController import ConvergenceController
import numpy as np

np.bool = np.bool_
import libpressio


Expand Down