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
4 changes: 4 additions & 0 deletions dockerfiles/full/build_scripts/cuda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ sed -i 's/__func__(float rsqrtf(float a));/__func__(float rsqrtf(float a) noexce
sed -i '629s/rsqrt(double x);/rsqrt(double x) noexcept(true);/' /usr/local/cuda-13.1/targets/${ARCH_A}-linux/include/crt/math_functions.h
sed -i '653s/);/) noexcept(true);/' /usr/local/cuda-13.1/targets/${ARCH_A}-linux/include/crt/math_functions.h

# Patch pour CUDA 13.1 et Clang 20
sed -i 's/__func__(double rsqrt(const double a))/__func__(double rsqrt(const double a) noexcept(true))/' /usr/local/cuda-13.1/targets/${ARCH_A}-linux/include/crt/math_functions.hpp
sed -i 's/__func__(float rsqrtf(const float a))/__func__(float rsqrtf(const float a) noexcept(true))/' /usr/local/cuda-13.1/targets/${ARCH_A}-linux/include/crt/math_functions.hpp

#---------------------------------------------------------------------------
#---------------------------------------------------------------------------

Expand Down
3 changes: 3 additions & 0 deletions dockerfiles/minimal/build_scripts/minimal_apt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ if [ ! -f /usr/lib/${ARCH}-linux-gnu/prrte3/share/prte/help-prun.txt ]; then
cp /usr/share/doc/libprrte-dev/help-schizo-ompi.txt /usr/lib/${ARCH}-linux-gnu/prrte3/share/prte/
cp /usr/share/doc/libprrte-dev/help-prun.txt.gz /usr/lib/${ARCH}-linux-gnu/prrte3/share/prte/
gzip -d /usr/lib/${ARCH}-linux-gnu/prrte3/share/prte/help-prun.txt.gz ;

cp /usr/share/doc/libprrte-dev/help-prte-rmaps-base.txt.gz /usr/lib/${ARCH}-linux-gnu/prrte3/share/prte/
gzip -d /usr/lib/${ARCH}-linux-gnu/prrte3/share/prte/help-prte-rmaps-base.txt.gz ;
fi

# https://github.com/open-mpi/ompi/issues/12517
Expand Down
Loading