Skip to content

Commit

Permalink
update with mpicc
Browse files Browse the repository at this point in the history
  • Loading branch information
joezuntz committed Sep 5, 2024
1 parent ae5b824 commit 43abe15
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions txpipe-min-failing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ RUN mkdir /opt/mpich \
&& wget http://www.mpich.org/static/downloads/${MPI_VERSION}/mpich-${MPI_VERSION}.tar.gz \
&& tar xvzf mpich-${MPI_VERSION}.tar.gz \
&& cd mpich-${MPI_VERSION} \
&& ./autogen.sh \
&& FFLAGS=-fallow-argument-mismatch FCFLAGS=-fallow-argument-mismatch ./configure --disable-cxx --with-channel=ch3 \
&& make \
&& make -j 2 \
&& make install \
&& rm -rf /opt/mpich

Expand All @@ -25,4 +26,4 @@ RUN /sbin/ldconfig
# check we are using the conda python
RUN which python3
RUN python3 --version
RUN python3 -m pip install mpi4py
RUN MPICC=mpicc python3 pip install --force-reinstall --no-cache-dir --no-binary=mpi4py mpi4py

0 comments on commit 43abe15

Please sign in to comment.