commit 0d8a1c315d07f0385adce5c28a0a68350bcf3f9f
parent c3177ae5e2c0a65c2b7327a8c4d86d489c3e2f6d
Author: jatinchowdhury18 <[email protected]>
Date: Tue, 6 Apr 2021 16:54:28 -0400
Update RTNeural to make sure it uses the correct backend (#179)
* Update RTNeural to make sure it uses the correct backend
* Adjust warning flags
Diffstat:
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/Plugin/modules/CMakeLists.txt b/Plugin/modules/CMakeLists.txt
@@ -8,8 +8,12 @@ juce_add_modules(foleys_gui_magic)
juce_add_modules(chowdsp_utils)
include(WarningFlags.cmake)
-# Using RTNeural with XSimd backend
-set(RTNEURAL_XSIMD ON CACHE BOOL "Use RTNeural with XSimd backend" FORCE)
+# Using RTNeural with XSimd or Accelerate backend
+if(APPLE)
+ set(RTNEURAL_ACCELERATE ON CACHE BOOL "Use RTNeural with Accelerate backend" FORCE)
+else()
+ set(RTNEURAL_XSIMD ON CACHE BOOL "Use RTNeural with XSimd backend" FORCE)
+endif()
add_subdirectory(RTNeural)
add_library(juce_plugin_modules STATIC)
diff --git a/Plugin/modules/WarningFlags.cmake b/Plugin/modules/WarningFlags.cmake
@@ -5,6 +5,7 @@ if((CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") OR (CMAKE_CXX_SIMULATE_ID STREQUAL "M
/W4 # base warning level
/wd4458 # declaration hides class member (from Foley's GUI Magic)
/wd4505 # since VS2019 doesn't handle [[ maybe_unused ]] for static functions (RTNeural::debug_print)
+ /wd4244 # for XSIMD
)
elseif((CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang"))
target_compile_options(warning_flags INTERFACE
@@ -21,6 +22,9 @@ elseif((CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR (CMAKE_CXX_COMPILER_ID STREQU
# Comment them out to be more strict.
-Wno-shadow-field-in-constructor -Wno-shadow-field -Wno-sign-conversion
-Wno-float-conversion -Wno-implicit-float-conversion -Wno-switch-enum
+ # For XSIMD
+ -Wno-cast-align -Wno-shadow -Wno-implicit-int-conversion
+ -Wno-zero-as-null-pointer-constant
)
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
target_compile_options(warning_flags INTERFACE
@@ -32,6 +36,8 @@ elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
# These lines suppress some warnings from Foley's GUI Magic and RTNeural.
# Comment them out to be more strict.
-Wno-sign-conversion -Wno-switch-enum -Wno-overloaded-virtual
+ # For XSIMD
+ -Wno-zero-as-null-pointer-constant
# From LV2 Wrapper
-Wno-parentheses -Wno-deprecated-declarations -Wno-redundant-decls
)