-
-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Correct ld in format strings in cmpd_dset.c (#3697) Removes clang warnings * Clean up comments. (#3695) * Add NVidia compiler support and CI (#3686) * Work around Theta system issue failure in links test (#3710) When the Subfiling VFD is enabled, the links test may try to initialize the Subfiling VFD and call MPI_Init_thread. On Theta, this appears to have an issue that will cause the links test to fail. Reworked the test to check for the same conditions in a more roundabout way that doesn't involved initializing the Subfiling VFD * Fix issue with unmatched messages in ph5diff (#3719) * provide an alternative to mapfile for older bash (#3717) * Attempt to quiet some warnings with cray compilers. (#3724) * Fix CMake VOL passthrough tests by copying files to correct directory (#3721) * Develop intel split (#3722) * Split intel compiler flags into sub-folders * Update Intel options for warnings * Mostly CMake, Autotools needs additional work * Fixes and adjustments to t_filters_parallel (#3714) Broadcast number of datasets to create in multi-dataset I/O cases so that interference with random number generation doesn't cause mismatches between ranks Set fill time for datasets to "never" by default and adjust on a per-test basis to avoid writing fill values to chunks when it's unnecessary Reduce number of loops run in some tests when performing multi-dataset I/O Fix an issue in the "fill time never" test where data verification could fill if file space reuse causes application buffers to be filled with chosen fill value when reading from datasets with uninitialized storage Skip multi-chunk I/O test configurations for multi-dataset I/O configurations when the TestExpress level is > 1 since those tests can be more stressful on the file system Disable use of persistent file free space management for now since it occasionally runs into an infinite loop in the library's free space management code * Suppress cast-qual warning in H5TB Fortran wrapper (#3728) This interface is fundamentally broken, const-wise. * Add new API function H5Pget_actual_select_io_mode() (#2974) This function allows the user to determine if the library performed selection I/O, vector I/O, or scalar (legacy) I/O during the last HDF5 operation performed with the provided DXPL. Expanded existing tests to check this functionality. * Test scripts now execute in-source with creation of tmp dir (#3723) Fixes a few issues created in #3580: * Fixes a problem where committed tools test files were deleted when cleaning after an in-source build * Fixes issues with test file paths in Autotools tools test scripts * Add -h and --help as flags in h5cc & h5fc (#3729) Adds these common help flags in addition to -help * Update the library version matrix for H5Pset_libver_bounds() (#3702) * Fixed #3524 Added 1.12, 1.14, and 1.16 to the table for libver bounds in the H5Pset_libver_bounds docs. * Remove references to LIBVER_V116 --------- Co-authored-by: H. Joe Lee <[email protected]> Co-authored-by: Allen Byrne <[email protected]> Co-authored-by: Scot Breitenfeld <[email protected]> Co-authored-by: Dana Robinson <[email protected]> Co-authored-by: Neil Fortner <[email protected]> Co-authored-by: Glenn Song <[email protected]> Co-authored-by: bmribler <[email protected]>
- Loading branch information
1 parent
302f54a
commit b16808d
Showing
97 changed files
with
2,106 additions
and
1,203 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 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 |
---|---|---|
|
@@ -9,54 +9,54 @@ | |
# If you do not have access to either file, you may request a copy from | ||
# [email protected]. | ||
# | ||
set(CMAKE_C_STANDARD 99) | ||
set(CMAKE_C_STANDARD_REQUIRED TRUE) | ||
set (CMAKE_C_STANDARD 99) | ||
set (CMAKE_C_STANDARD_REQUIRED TRUE) | ||
|
||
set (CMAKE_C_FLAGS "${CMAKE_C99_STANDARD_COMPILE_OPTION} ${CMAKE_C_FLAGS}") | ||
set (CMAKE_C_FLAGS "${CMAKE_C_SANITIZER_FLAGS} ${CMAKE_C_FLAGS}") | ||
message (VERBOSE "Warnings Configuration: C default: ${CMAKE_C_FLAGS}") | ||
#----------------------------------------------------------------------------- | ||
# Compiler specific flags : Shouldn't there be compiler tests for these | ||
#----------------------------------------------------------------------------- | ||
if(WIN32 AND CMAKE_C_COMPILER_ID STREQUAL "Intel") | ||
set(_INTEL_WINDOWS 1) | ||
endif() | ||
if (WIN32 AND (CMAKE_C_COMPILER_ID STREQUAL "Intel" OR CMAKE_C_COMPILER_ID MATCHES "IntelLLVM")) | ||
set (_INTEL_WINDOWS 1) | ||
endif () | ||
|
||
if(WIN32 AND CMAKE_C_COMPILER_ID MATCHES "[Cc]lang" AND "x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC") | ||
set(_CLANG_MSVC_WINDOWS 1) | ||
endif() | ||
if (WIN32 AND CMAKE_C_COMPILER_ID MATCHES "[Cc]lang" AND "x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC") | ||
set (_CLANG_MSVC_WINDOWS 1) | ||
endif () | ||
|
||
# Disable deprecation warnings for standard C functions. | ||
# really only needed for newer versions of VS, but should | ||
# not hurt other versions, and this will work into the | ||
# future | ||
if(MSVC OR _INTEL_WINDOWS OR _CLANG_MSVC_WINDOWS) | ||
add_definitions(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE) | ||
endif() | ||
if (MSVC OR _INTEL_WINDOWS OR _CLANG_MSVC_WINDOWS) | ||
add_definitions (-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE) | ||
endif () | ||
|
||
if(MSVC) | ||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stack:10000000") | ||
endif() | ||
if (MSVC) | ||
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stack:10000000") | ||
endif () | ||
|
||
# MSVC 14.28 enables C5105, but the Windows SDK 10.0.18362.0 triggers it. | ||
if(CMAKE_C_COMPILER_ID STREQUAL "MSVC" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 19.28) | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -wd5105") | ||
endif() | ||
if (CMAKE_C_COMPILER_ID STREQUAL "MSVC" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 19.28) | ||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -wd5105") | ||
endif () | ||
|
||
if(_CLANG_MSVC_WINDOWS AND "x${CMAKE_C_COMPILER_FRONTEND_VARIANT}" STREQUAL "xGNU") | ||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Xlinker -stack:20000000") | ||
endif() | ||
|
||
if(CMAKE_C_COMPILER_ID STREQUAL "NVHPC" ) | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Minform=warn") | ||
if (CMAKE_C_COMPILER_ID STREQUAL "NVHPC" ) | ||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Minform=warn") | ||
if (NOT ${HDF_CFG_NAME} MATCHES "Debug" AND NOT ${HDF_CFG_NAME} MATCHES "Developer") | ||
if (NOT ${HDF_CFG_NAME} MATCHES "RelWithDebInfo") | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -s") | ||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -s") | ||
endif () | ||
else () | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Mbounds -g") | ||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Mbounds -g") | ||
endif () | ||
endif() | ||
endif () | ||
|
||
if (CMAKE_COMPILER_IS_GNUCC) | ||
set (CMAKE_C_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_C_FLAGS}") | ||
|
@@ -146,20 +146,20 @@ else () | |
# warnings that are emitted. If you need it, add it at configure time. | ||
if (CMAKE_C_COMPILER_ID STREQUAL "Intel") | ||
if (_INTEL_WINDOWS) | ||
ADD_H5_FLAGS (HDF5_CMAKE_C_FLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/win-general") | ||
ADD_H5_FLAGS (HDF5_CMAKE_C_FLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/classic/win-general") | ||
else () | ||
ADD_H5_FLAGS (HDF5_CMAKE_C_FLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/general") | ||
ADD_H5_FLAGS (HDF5_CMAKE_C_FLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/classic/general") | ||
endif() | ||
if (NOT _INTEL_WINDOWS) | ||
if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 15.0) | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/15") | ||
endif() | ||
if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 15.0) | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/classic/15") | ||
endif () | ||
# this is just a failsafe | ||
list (APPEND H5_CFLAGS "-finline-functions") | ||
if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 18.0) | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/18") | ||
endif() | ||
endif() | ||
if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 18.0) | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/classic/18") | ||
endif () | ||
endif () | ||
elseif (CMAKE_C_COMPILER_ID STREQUAL "GNU") | ||
# Add general CFlags for GCC versions 4.8 and above | ||
if (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.8) | ||
|
@@ -169,7 +169,15 @@ else () | |
# gcc automatically inlines based on the optimization level | ||
# this is just a failsafe | ||
list (APPEND H5_CFLAGS "-finline-functions") | ||
elseif (CMAKE_C_COMPILER_ID MATCHES "IntelLLVM" OR CMAKE_C_COMPILER_ID MATCHES "[Cc]lang") | ||
elseif (CMAKE_C_COMPILER_ID MATCHES "IntelLLVM") | ||
if (_INTEL_WINDOWS) | ||
ADD_H5_FLAGS (HDF5_CMAKE_C_FLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/oneapi/win-general") | ||
else () | ||
# this is just a failsafe | ||
list (APPEND H5_CFLAGS "-finline-functions") | ||
ADD_H5_FLAGS (HDF5_CMAKE_C_FLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/oneapi/general") | ||
endif () | ||
elseif (CMAKE_C_COMPILER_ID MATCHES "[Cc]lang") | ||
ADD_H5_FLAGS (HDF5_CMAKE_C_FLAGS "${HDF5_SOURCE_DIR}/config/clang-warnings/general") | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/clang-warnings/error-general") | ||
elseif (CMAKE_C_COMPILER_ID STREQUAL "PGI") | ||
|
@@ -191,13 +199,19 @@ if (HDF5_ENABLE_DEV_WARNINGS) | |
message (STATUS "....HDF5 developer group warnings are enabled") | ||
if (CMAKE_C_COMPILER_ID STREQUAL "Intel") | ||
if (_INTEL_WINDOWS) | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/win-developer-general") | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/classic/win-developer-general") | ||
else () | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/developer-general") | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/classic/developer-general") | ||
endif () | ||
elseif (CMAKE_C_COMPILER_ID STREQUAL "GNU" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.8) | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/gnu-warnings/developer-general") | ||
elseif (CMAKE_C_COMPILER_ID MATCHES "IntelLLVM" OR CMAKE_C_COMPILER_ID MATCHES "[Cc]lang") | ||
elseif (CMAKE_C_COMPILER_ID MATCHES "IntelLLVM") | ||
if (_INTEL_WINDOWS) | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/oneapi/win-developer-general") | ||
else () | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/intel-warnings/oneapi/developer-general") | ||
endif () | ||
elseif (CMAKE_C_COMPILER_ID MATCHES "[Cc]lang") | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/clang-warnings/developer-general") | ||
endif () | ||
|
||
|
@@ -211,12 +225,16 @@ if (HDF5_ENABLE_DEV_WARNINGS) | |
list (APPEND H5_CFLAGS "-Winline") | ||
elseif (CMAKE_C_COMPILER_ID STREQUAL "Intel" AND NOT _INTEL_WINDOWS) | ||
list (APPEND H5_CFLAGS "-Winline") | ||
elseif (CMAKE_C_COMPILER_ID MATCHES "IntelLLVM" AND NOT _INTEL_WINDOWS) | ||
list (APPEND H5_CFLAGS "-Winline") | ||
elseif (CMAKE_C_COMPILER_ID MATCHES "[Cc]lang") | ||
list (APPEND H5_CFLAGS "-Winline") | ||
endif () | ||
endif () | ||
else () | ||
if (CMAKE_C_COMPILER_ID STREQUAL "GNU" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.8) | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/gnu-warnings/no-developer-general") | ||
elseif (CMAKE_C_COMPILER_ID MATCHES "IntelLLVM" OR CMAKE_C_COMPILER_ID MATCHES "[Cc]lang") | ||
elseif (CMAKE_C_COMPILER_ID MATCHES "[Cc]lang") | ||
ADD_H5_FLAGS (H5_CFLAGS "${HDF5_SOURCE_DIR}/config/clang-warnings/no-developer-general") | ||
endif () | ||
endif () | ||
|
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
Oops, something went wrong.