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

Peiming Liu llvmlistbot at llvm.org
Mon Jun 10 13:33:19 PDT 2024


https://github.com/PeimingLiu updated https://github.com/llvm/llvm-project/pull/95034

>From fb0fbf2e0e5bbc9641a67a3d0fb30656fc7521d8 Mon Sep 17 00:00:00 2001
From: Peiming Liu <peiming at google.com>
Date: Mon, 10 Jun 2024 20:30:53 +0000
Subject: [PATCH] [mlir][sparse] fix missing cmake dependencies.

---
 mlir/lib/Dialect/SparseTensor/IR/CMakeLists.txt | 2 ++
 1 file changed, 2 insertions(+)

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