[Mlir-commits] [mlir] d474976 - [mlir][sparse] fix missing cmake dependencies. (#95034)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Mon Jun 10 13:44:11 PDT 2024


Author: Peiming Liu
Date: 2024-06-10T13:44:07-07:00
New Revision: d4749765fc388e392028ecb540dc48bc8ea15c41

URL: https://github.com/llvm/llvm-project/commit/d4749765fc388e392028ecb540dc48bc8ea15c41
DIFF: https://github.com/llvm/llvm-project/commit/d4749765fc388e392028ecb540dc48bc8ea15c41.diff

LOG: [mlir][sparse] fix missing cmake dependencies. (#95034)

Fix https://github.com/llvm/llvm-project/pull/88955

Added: 
    

Modified: 
    mlir/lib/Dialect/SparseTensor/IR/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Dialect/SparseTensor/IR/CMakeLists.txt b/mlir/lib/Dialect/SparseTensor/IR/CMakeLists.txt
index 6f59b69bddce8..fe2cc90688d08 100644
--- a/mlir/lib/Dialect/SparseTensor/IR/CMakeLists.txt
+++ b/mlir/lib/Dialect/SparseTensor/IR/CMakeLists.txt
@@ -45,11 +45,13 @@ add_mlir_dialect_library(MLIRSparseTensorDialect
 
   LINK_LIBS PUBLIC
   MLIRArithDialect
+  MLIRControlFlowInterfaces
   MLIRComplexDialect
   MLIRDialect
   MLIRDialectUtils
   MLIRIR
   MLIRInferTypeOpInterface
+  MLIRLoopLikeInterface
   MLIRSupport
   MLIRSparseTensorEnums
   )


        


More information about the Mlir-commits mailing list