Halide is a programming language designed to make it easier to write high-performance image and array processing code on modern machines.
The package halide provides CMake targets:
find_package(Halide REQUIRED)
# JIT mode:
target_link_libraries(main PRIVATE Halide::Halide)
# AOT mode:
target_link_libraries(gen PRIVATE Halide::Generator)
add_halide_library(filter FROM gen)
target_link_libraries(main PRIVATE filter)
For more information see:
https://github.com/halide/Halide/blob/v10.0.0/README_cmake.md
Include targets required for jit compilation
Include all targets
Include AArch64 target
Include AMDGPU target
Include ARM target
Include Hexagon target
Include Mips target
Include NVPTX target
Include PowerPC target
Include RISCV target
Include X86 target
v10.0.0#0
!uwp
Complex license
Control