mirror of https://github.com/llvm/torch-mlir
23 lines
352 B
CMake
23 lines
352 B
CMake
add_subdirectory(BasicpyToStd)
|
|
add_subdirectory(NumpyToTCF)
|
|
add_subdirectory(TCFToTCP)
|
|
|
|
if(NPCOMP_ENABLE_IREE)
|
|
add_subdirectory(BasicpyToIREEVM)
|
|
endif()
|
|
|
|
add_mlir_library(NPCOMPConversionPasses
|
|
Passes.cpp
|
|
|
|
DEPENDS
|
|
NPCOMPConversionPassIncGen
|
|
|
|
LINK_COMPONENTS
|
|
Core
|
|
|
|
LINK_LIBS PUBLIC
|
|
NPCOMPBasicpyToSTD
|
|
NPCOMPNumpyToTCF
|
|
NPCOMPTCFToTCP
|
|
)
|