Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve amd-fftw patch (re-fixes #74) #89

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion binfo/020_01_amd_fftw_single_precision.binfo
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ BINFO_APP_UPSTREAM_REPO_VERSION_TAG=4.2
BINFO_APP_CONFIG_CMD_ARRAY=(
"cd ${BINFO_APP_BUILD_DIR}"
"export CFLAGS=\"${CFLAGS} -O3\""
"${BINFO_APP_SRC_DIR}/configure --enable-sse2 --enable-avx --enable-avx2 --enable-avx512 --enable-mpi --enable-openmp --enable-shared --enable-amd-opt --enable-amd-mpifft --enable-single --prefix=${INSTALL_DIR_PREFIX_SDK_ROOT} --libdir=${INSTALL_DIR_PREFIX_SDK_ROOT}/lib64"
"${BINFO_APP_SRC_DIR}/configure --enable-sse2 --enable-avx --enable-avx2 --enable-avx512 --enable-mpi --enable-openmp --enable-shared --enable-amd-opt --enable-amd-mpifft --enable-single --enable-dynamic-dispatcher --prefix=${INSTALL_DIR_PREFIX_SDK_ROOT} --libdir=${INSTALL_DIR_PREFIX_SDK_ROOT}/lib64"
)
2 changes: 1 addition & 1 deletion binfo/020_02_amd_fftw_double_precision.binfo
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ BINFO_APP_UPSTREAM_REPO_VERSION_TAG=4.2
BINFO_APP_CONFIG_CMD_ARRAY=(
"cd ${BINFO_APP_BUILD_DIR}"
"export CFLAGS=\"${CFLAGS} -O3\""
"${BINFO_APP_SRC_DIR}/configure --enable-sse2 --enable-avx --enable-avx2 --enable-avx512 --enable-mpi --enable-openmp --enable-shared --enable-amd-opt --enable-amd-mpifft --prefix=${INSTALL_DIR_PREFIX_SDK_ROOT} --libdir=${INSTALL_DIR_PREFIX_SDK_ROOT}/lib64"
"${BINFO_APP_SRC_DIR}/configure --enable-sse2 --enable-avx --enable-avx2 --enable-avx512 --enable-mpi --enable-openmp --enable-shared --enable-amd-opt --enable-amd-mpifft --enable-dynamic-dispatcher --prefix=${INSTALL_DIR_PREFIX_SDK_ROOT} --libdir=${INSTALL_DIR_PREFIX_SDK_ROOT}/lib64"
)
2 changes: 1 addition & 1 deletion binfo/020_03_amd_fftw_long_double_precision.binfo
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ BINFO_APP_UPSTREAM_REPO_VERSION_TAG=4.2
BINFO_APP_CONFIG_CMD_ARRAY=(
"cd ${BINFO_APP_BUILD_DIR}"
"export CFLAGS=\"${CFLAGS} -O3\""
"${BINFO_APP_SRC_DIR}/configure --enable-mpi --enable-openmp --enable-shared --enable-amd-opt --enable-amd-mpifft --enable-long-double --prefix=${INSTALL_DIR_PREFIX_SDK_ROOT} --libdir=${INSTALL_DIR_PREFIX_SDK_ROOT}/lib64"
"${BINFO_APP_SRC_DIR}/configure --enable-mpi --enable-openmp --enable-shared --enable-amd-opt --enable-amd-mpifft --enable-long-double --enable-dynamic-dispatcher --prefix=${INSTALL_DIR_PREFIX_SDK_ROOT} --libdir=${INSTALL_DIR_PREFIX_SDK_ROOT}/lib64"
)
2 changes: 1 addition & 1 deletion binfo/020_04_amd_fftw_quad_precision.binfo
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ BINFO_APP_UPSTREAM_REPO_VERSION_TAG=4.2
BINFO_APP_CONFIG_CMD_ARRAY=(
"cd ${BINFO_APP_BUILD_DIR}"
"export CFLAGS=\"${CFLAGS} -O3\""
"${BINFO_APP_SRC_DIR}/configure --enable-openmp --enable-shared --enable-amd-opt --enable-amd-mpifft --enable-quad-precision --prefix=${INSTALL_DIR_PREFIX_SDK_ROOT} --libdir=${INSTALL_DIR_PREFIX_SDK_ROOT}/lib64"
"${BINFO_APP_SRC_DIR}/configure --enable-openmp --enable-shared --enable-amd-opt --enable-amd-mpifft --enable-quad-precision --enable-dynamic-dispatcher --prefix=${INSTALL_DIR_PREFIX_SDK_ROOT} --libdir=${INSTALL_DIR_PREFIX_SDK_ROOT}/lib64"
)
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
From 7d168fcd8b3d015fb9d06876e2d43e8cc38f8efe Mon Sep 17 00:00:00 2001
From 704164a043c099b07ade4e5f50ef070e2d7c4c06 Mon Sep 17 00:00:00 2001
From: Mika Laitio <[email protected]>
Date: Wed, 29 May 2024 15:16:57 -0700
Subject: [PATCH] fix parameter type for openmpi 5.0.1
Subject: [PATCH 1/2] fix parameter type for openmpi 5.0.1
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

rocm_sdk_builder_611
detected on fedora 40/gcc build that
at least OpenMPI 5.0.1 request that last
Expand Down Expand Up @@ -67,5 +68,5 @@ index 41b588c7..298ab644 100644
#ifdef AMD_MPI_TRANSPOSE_LOGS
printf("TRANSPOSE-PAIRWISE: n_pes[%d], my_pe[%d], first_pe[%d]\n", n_pes, my_pe, pe);
--
2.45.1
2.45.2

Loading