Add some missing dependencies.

Caught in the wild here:
https://github.com/llvm/torch-mlir/runs/8046660640?check_suite_focus=true

It is common for a missing dependency to only surface as an issue on the
CI machines since they have fewer cores which prevents a "race" that
happens to cause the dependency to be built before the dependent.
pull/1318/head
Sean Silva 2022-08-27 01:00:02 +00:00
parent 9f061ea97d
commit 51ef1b141c
1 changed files with 5 additions and 0 deletions

View File

@ -3,4 +3,9 @@ add_mlir_conversion_library(TorchMLIRConversionUtils
ADDITIONAL_HEADER_DIRS
${PROJECT_SOURCE_DIR}/include/torch-mlir/Conversion/Utils
LINK_LIBS PUBLIC
MLIRArithmeticDialect
MLIRLinalgDialect
TorchMLIRTorchDialect
)