CMakeLists.txt 288 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
5
6

add_library(rtg 
    program.cpp
    shape.cpp
)
rocm_clang_tidy_check(rtg)
Paul's avatar
Paul committed
7
target_include_directories(rtg PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>)
Paul's avatar
Paul committed
8
9

add_subdirectory(onnx)
Paul's avatar
Paul committed
10
add_subdirectory(targets/cpu)
Paul's avatar
Paul committed
11
if(RTG_ENABLE_MIOPEN)
Paul's avatar
Paul committed
12
add_subdirectory(targets/miopen)
Paul's avatar
Paul committed
13
endif()