CMakeLists.txt 352 字节
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6

function(USE_JITKERNEL_MORE TARGET TYPE)
    file(APPEND ${jit_file} "USE_JITKERNEL_MORE(${TARGET} ${TYPE});\n")
endfunction()

# enable it latter
7 8 9
 if(WITH_MKLML)
     add_subdirectory(mkl)
 endif()
Y
Yan Chunwei 已提交
10 11 12 13 14 15 16 17 18

if(WITH_AVX)
    add_subdirectory(intrinsic)
endif()

# mix should be last
add_subdirectory(mix)

set(JIT_KERNEL_DEPS ${JIT_KERNEL_DEPS} PARENT_SCOPE)