-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.13 release Co-authored-by: Romain Beucher <[email protected]>
- Loading branch information
Showing
25 changed files
with
126 additions
and
2,782 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,7 @@ RUN ldconfig | |
# create venv now for forthcoming python packages | ||
USER $NB_USER | ||
RUN /usr/bin/python3 -m virtualenv --system-site-packages --python=/usr/bin/python3 ${VIRTUAL_ENV} | ||
RUN pip3 install --no-cache-dir Cython git+https://github.com/mpi4py/[email protected] | ||
|
||
USER root | ||
# build petsc | ||
|
@@ -79,8 +80,10 @@ ARG PETSC_VERSION="3.17.1" | |
RUN wget http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/petsc-lite-${PETSC_VERSION}.tar.gz | ||
RUN tar zxf petsc-lite-${PETSC_VERSION}.tar.gz | ||
WORKDIR /tmp/petsc-build/petsc-${PETSC_VERSION} | ||
RUN python3 -m pip install cython | ||
RUN python3 ./configure --with-debugging=0 --prefix=/usr/local \ | ||
--COPTFLAGS="-g -O3" --CXXOPTFLAGS="-g -O3" --FOPTFLAGS="-g -O3" \ | ||
--with-petsc4py=1 \ | ||
--with-zlib=1 \ | ||
--download-hdf5=1 \ | ||
--download-mumps=1 \ | ||
|
@@ -90,6 +93,9 @@ RUN python3 ./configure --with-debugging=0 --prefix=/usr/local \ | |
--download-hypre=1 \ | ||
--download-scalapack=1 \ | ||
--download-superlu_dist=1 \ | ||
--download-ctetgen \ | ||
--download-eigen \ | ||
--download-triangle \ | ||
--useThreads=0 \ | ||
--download-superlu=1 \ | ||
--with-shared-libraries \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.