You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Though src/LLVM_Headers.h / src/Util.h suggests Halide should be built with -UNDEBUG,
i wish it would be either better documented or better yet cmakefiles should add_compile_definitions("-UNDEBUG")...
Thanks!
The text was updated successfully, but these errors were encountered:
or better yet cmakefiles should add_compile_definitions("-UNDEBUG")...
As a matter of policy, we do not use directory commands in the Halide CMake codebase. Instead, we prefer the target_* prefixed commands, such as target_compile_definitions. Which targets are causing problems here? Is there something that isn't covered by the following code?
https://github.com/halide/Halide/blob/release/19.x/test/error/buffer_larger_than_two_gigs.cpp#L4-L6
is that actually nessesary/correct especially given
https://github.com/halide/Halide/blob/release/19.x/src/Buffer.h#L142-L148
?
Though
src/LLVM_Headers.h
/src/Util.h
suggests Halide should be built with-UNDEBUG
,i wish it would be either better documented or better yet cmakefiles should
add_compile_definitions("-UNDEBUG")
...Thanks!
The text was updated successfully, but these errors were encountered: