Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TRIQS/solid_dmft
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 30ff9bbbb237697fbcdffcdc0b8a8e30c94c690c
Choose a base ref
..
head repository: TRIQS/solid_dmft
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fd56cd12ebf79e8e2cf314b74a351bbde94c2ec2
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 Docker/github_ci_dockerfile
  2. +1 −1 Docker/openmpi_dockerfile
2 changes: 1 addition & 1 deletion Docker/github_ci_dockerfile
Original file line number Diff line number Diff line change
@@ -121,7 +121,7 @@ RUN cd /source && git clone -b unstable --depth 1 https://github.com/TRIQS/maxen
&& make -j$NCORES && ctest -j$NCORES && make install

# install sparse-ir into triqs pythonpath
RUN pip install --no-deps --target /triqs/lib/python3.12/site-packages sparse-ir[xprec]
RUN pip install --no-deps --target /triqs/lib/python3.12/site-packages sparse-ir xprec

# remove source
RUN cd / && rm -rf source
2 changes: 1 addition & 1 deletion Docker/openmpi_dockerfile
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
# && rm -rf openmpi-4.1.5.tar.gz openmpi-4.1.5

# install sparse-ir into triqs pythonpath
RUN pip install --no-deps --target /triqs/lib/python3.12/site-packages sparse-ir[xprec]
RUN pip install --no-deps --target /triqs/lib/python3.12/site-packages sparse-ir xprec

ENV PYTHON_VERSION=3.12 \
CC=clang-${LLVM} CXX=clang++-${LLVM} CXXFLAGS="-stdlib=libc++"