onnx-mlir/src/BUILD

35 lines
757 B
Python
Raw Normal View History

2020-09-29 17:32:28 +08:00
cc_binary(
name = "MainUtils",
srcs = ["MainUtils.hpp","MainUtils.cpp"],
copts = [],
deps = [
"@onnx",
"//Builder:OMBuilder",
OMKrnlOps
OMONNXOps
OMKrnlToAffine
OMKrnlToLLVM
OMONNXToKrnl
OMONNXRewrite
OMShapeInference
OMShapeInferenceOpInterface
OMAttributePromotion
OMPromotableConstOperandsOpInterface
OMResultTypeInferenceOpInterface
OMElideConstants
OMElideKrnlGlobalConstants
OMPackKrnlGlobalConstants
OMEnableMemoryPool
OMBundleMemoryPools
OMDisconnectKrnlDimFromAlloc
OMLowerKrnlShape
],
)
cc_binary(
name = "onnx-mlir",
srcs = ["main.cpp"],
copts = [],
deps = [":MainUtils"],
)