CMakeLists.txt 1.7 KB
Newer Older
1 2 3
include_directories("./src/include")

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-parameter")
4
file(GLOB_RECURSE SOURCES ./*.cpp ../src/core/test/*.cpp ../src/gopt/test/*.cpp ../src/opr/test/*.cpp ../src/plugin/test/*.cpp ../src/serialization/test/*.cpp ../src/custom/test/*.cpp)
5 6 7 8 9 10 11 12 13 14 15 16 17 18
if(MGE_WITH_JIT)
    file(GLOB_RECURSE SOURCES_ ../src/jit/test/*.cpp)
    list(APPEND SOURCES ${SOURCES_})
endif()
if(MGE_WITH_DISTRIBUTED)
    file(GLOB_RECURSE SOURCES_ ../src/opr-mm/test/*.cpp)
    list(APPEND SOURCES ${SOURCES_})
endif()
if (MGE_WITH_CUDA AND MGE_WITH_TRT)
    file(GLOB_RECURSE SOURCES_ ../src/tensorrt/test/*.cpp)
    list(APPEND SOURCES ${SOURCES_})
endif()

add_executable(megbrain_test ${SOURCES})
M
Megvii Engine Team 已提交
19
target_link_libraries(megbrain_test gtest gmock)
20
target_link_libraries(megbrain_test megbrain megdnn ${MGE_CUDA_LIBS})
21 22 23
if (MGE_WITH_CUDA)
    target_include_directories(megbrain_test PRIVATE ${CUDNN_INCLUDE_DIR})
endif()
24 25 26 27 28 29 30 31 32
if(CXX_SUPPORT_WCLASS_MEMACCESS)
    if(MGE_WITH_CUDA)
        target_compile_options(megbrain_test PRIVATE "$<$<COMPILE_LANGUAGE:CUDA>:-Xcompiler=-Wno-class-memaccess>"
            "$<$<NOT:$<COMPILE_LANGUAGE:CUDA>>:-Wno-class-memaccess>")
    else()
        target_compile_options(megbrain_test PRIVATE "-Wno-class-memaccess")
    endif()
endif()

33 34 35 36 37 38
if(UNIX)
    if(APPLE OR ANDROID)
        target_link_libraries(megbrain_test dl)
    else()
        target_link_libraries(megbrain_test dl rt)
    endif()
39 40
endif()

41 42 43
if (MGE_WITH_DISTRIBUTED)
    target_link_libraries(megbrain_test megray)
endif()
44 45 46 47 48 49

if(MGE_WITH_JIT)
    if(MGE_WITH_JIT_MLIR)
        add_subdirectory(${PROJECT_SOURCE_DIR}/src/jit/test/mlir ${CMAKE_CURRENT_BINARY_DIR}/../src/jit/test/mlir)
    endif()
endif()