Commit 155f8057 authored by emerit's avatar emerit
Browse files

strict math or no fast math option

parent f2e947ae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@
 *------------------------------------------------------------------------*/
/* TD renderer default HRIR model */
#ifdef DEBUGGING
/* Generated on 31-Jul-2024 with Matlab version 9.9.0.2037887 (R2020b) Update 8 by tmu on MACI64 */
/* Generated on 04-Feb-2025 with Matlab version 23.2.0.2668659 (R2023b) Update 9 by marcemerit on MACA64 */
#endif
const float defaultHRIR_rom_latency_s = 0.000020834f;
+8407 −8407

File changed.

Preview size limit exceeded, changes collapsed.

+719 −719

File changed.

Preview size limit exceeded, changes collapsed.

+3 −3
Original line number Diff line number Diff line
cmake_minimum_required(VERSION 3.5)
cmake_minimum_required(VERSION 3.10)

project(generate_crend_ivas_tables)

@@ -73,9 +73,9 @@ set(SOURCE_FILES_H

# require to be bit exact with main branch
if(MSVC)
    add_compile_options("/fp:fast")
    add_compile_options("/fp:strict")
else()
    add_compile_options("-ffast-math" "-fno-finite-math-only" "-fsigned-zeros" "-fno-associative-math")
    add_compile_options("-fno-fast-math")
endif()

add_library(${PROJECT_NAME}_lib STATIC ${SOURCE_FILES_C} ${SOURCE_FILES_H})
Loading