Skip to content

Commit

Permalink
write profile files to outdir-data
Browse files Browse the repository at this point in the history
  • Loading branch information
moustakas committed Dec 28, 2024
1 parent 4662cc7 commit cbdf46f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions podman/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,17 @@ RUN for x in \
healpy \
fitsio \
numba \
mkl \
mkl_fft \
# intel-cmplr-lib-rt \
# mpi4py \
seaborn \
matplotlib \
ipython \
ipykernel \
h5py \
; do pip3 install --break-system-packages $x; done

RUN for x in \
mkl \
# mkl_fft \
# intel-cmplr-lib-rt \
; do pip3 install --break-system-packages $x; done \
&& rm -Rf /root/.cache/pip

Expand All @@ -33,8 +35,8 @@ RUN for x in \

# https://gitlab.com/NERSC/python-benchmark/-/tree/main/amd
COPY fakeintel.c /src/fakeintel.c
RUN gcc -shared -fPIC -o /usr/local/lib/libfakeintel.so /src/fakeintel.c \
ENV LD_PRELOAD=/usr/local/lib/libfakeintel.so
RUN gcc -shared -fPIC -o /usr/local/lib/libfakeintel.so /src/fakeintel.c
ENV LD_PRELOAD /usr/local/lib/libfakeintel.so

ENV DESIUTIL_VERSION 3.4.3
ENV DESIMODEL_VERSION 0.19.2
Expand Down

0 comments on commit cbdf46f

Please sign in to comment.