mirror of https://github.com/llvm/torch-mlir
31 lines
634 B
CMake
31 lines
634 B
CMake
|
add_mlir_library(NPCOMPRefBackend
|
||
|
BypassShapes.cpp
|
||
|
RefBackend.cpp
|
||
|
LowerToLLVM.cpp
|
||
|
LowerToNpcomprtABI.cpp
|
||
|
TensorToMemref/LowerConstantTensorsToMemref.cpp
|
||
|
TensorToMemref/LowerShapedResultsToMemref.cpp
|
||
|
TensorToMemref/LowerStdToMemref.cpp
|
||
|
TensorToMemref/LowerStructuralToMemref.cpp
|
||
|
|
||
|
ADDITIONAL_HEADER_DIRS
|
||
|
${PROJECT_SRC_DIR}/include/npcomp/RefBackend
|
||
|
|
||
|
DEPENDS
|
||
|
NPCOMPRefBackendPassIncGen
|
||
|
|
||
|
LINK_COMPONENTS
|
||
|
Core
|
||
|
|
||
|
LINK_LIBS PUBLIC
|
||
|
MLIRIR
|
||
|
MLIRLinalg
|
||
|
MLIRSCFToStandard
|
||
|
MLIRShapeToStandard
|
||
|
MLIRStandard
|
||
|
MLIRStandardOpsTransforms
|
||
|
MLIRStandardToLLVM
|
||
|
)
|
||
|
|
||
|
mlir_check_all_link_libraries(NPCOMPRefBackend)
|