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: NOAA-EMC/NCEPLIBS-sp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6ae0ffa00b2e16dd040872522b8ce82d138d380a
Choose a base ref
..
head repository: NOAA-EMC/NCEPLIBS-sp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f0989d6254b654410bf0b247a559f69dbd54bf1e
Choose a head ref
Showing with 2 additions and 1 deletion.
  1. +1 −0 CMakeLists.txt
  2. +1 −1 tests/CMakeLists.txt
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@ option(BUILD_4 "Build the 4-byte real version of the library, libsp_4.a" ON)
option(BUILD_D "Build the 8-byte real version of the library, libsp_d.a" ON)
option(BUILD_8 "Build the 8-byte integer version of the library, libsp_8.a" OFF)
option(BUILD_DEPRECATED "Build deprecated functions" OFF)
option(TEST_TIME_LIMIT "Set timeout for tests" OFF)

# Figure whether user wants a _4, a _d, or both libraries.
if(BUILD_4)
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ endfunction()
# Build a _4 and _d version of each test and link them to the _4 and
# _d builds of the library, for 4-byte real, and 8-byte real.
foreach(kind ${kinds})
create_test(test_ncpus ${kind} 0.08)
create_test(test_ncpus ${kind} 0.15)
create_test(test_splat ${kind} 0.2)
create_test(test_sptezv ${kind} 0.2)
create_test(test_fft ${kind} 0.02)