Skip to content
Snippets Groups Projects
Verified Commit f0d69e88 authored by Guilherme Amadio's avatar Guilherme Amadio
Browse files

Drop math functions benchark compiled with -ffast-math

This causes undefined behavior with GCC 15 and UMESIMD,
and compilation failures with nvc++ (no support for -ffast-math).
parent 34f24df8
No related branches found
No related tags found
No related merge requests found
......@@ -21,12 +21,6 @@ if(BUILD_TESTING)
add_test(NAME bench-math COMMAND mathbench)
endif()
add_executable(mathbench-fast math_benchmarks.cc)
target_compile_options(mathbench-fast PRIVATE
$<IF:$<BOOL:${MSVC}>,/fp:fast,-ffast-math>)
target_link_libraries(mathbench-fast
benchmark::benchmark benchmark::benchmark_main VecCore)
add_executable(quadratic quadratic.cc)
target_link_libraries(quadratic VecCore)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment