-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[mlir][spirv] Update dependencies for #100138 #100397
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@llvm/pr-subscribers-mlir @llvm/pr-subscribers-mlir-spirv Author: Angel Zhang (angelz913) ChangesThis PR updates CMake and Bazel dependencies for #100138. Full diff: https://github.com/llvm/llvm-project/pull/100397.diff 4 Files Affected:
diff --git a/mlir/lib/Conversion/ConvertToSPIRV/CMakeLists.txt b/mlir/lib/Conversion/ConvertToSPIRV/CMakeLists.txt
index f7b090acf33af..c9d962d2de23f 100644
--- a/mlir/lib/Conversion/ConvertToSPIRV/CMakeLists.txt
+++ b/mlir/lib/Conversion/ConvertToSPIRV/CMakeLists.txt
@@ -27,6 +27,7 @@ add_mlir_conversion_library(MLIRConvertToSPIRVPass
MLIRTransforms
MLIRTransformUtils
MLIRUBToSPIRV
+ MLIRVectorDialect
MLIRVectorToSPIRV
MLIRVectorTransforms
)
diff --git a/mlir/lib/Dialect/SPIRV/Transforms/CMakeLists.txt b/mlir/lib/Dialect/SPIRV/Transforms/CMakeLists.txt
index 4de9b4729e720..68e0206e30a59 100644
--- a/mlir/lib/Dialect/SPIRV/Transforms/CMakeLists.txt
+++ b/mlir/lib/Dialect/SPIRV/Transforms/CMakeLists.txt
@@ -20,6 +20,7 @@ add_mlir_dialect_library(MLIRSPIRVConversion
MLIRDialectUtils
MLIRFuncDialect
MLIRIR
+ MLIRPass
MLIRSPIRVDialect
MLIRSupport
MLIRTransformUtils
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index 0d0224e6d6802..536c8256b4274 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -7158,6 +7158,7 @@ cc_library(
":DialectUtils",
":FuncDialect",
":IR",
+ ":Pass",
":SPIRVDialect",
":Support",
":TransformUtils",
@@ -8319,6 +8320,7 @@ cc_library(
":TransformUtils",
":Transforms",
":UBToSPIRV",
+ ":VectorDialect",
":VectorToSPIRV",
":VectorTransforms",
],
diff --git a/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
index a1d2b20a106e6..34beb758a12dd 100644
--- a/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
@@ -668,6 +668,7 @@ cc_library(
"//mlir:TransformUtils",
"//mlir:Transforms",
"//mlir:VectorDialect",
+ "//mlir:VectorTransforms",
],
)
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/143/builds/876 Here is the relevant piece of the build log for the reference:
|
Summary: This PR updates CMake and Bazel dependencies for #100138. Test Plan: Reviewers: Subscribers: Tasks: Tags: Differential Revision: https://phabricator.intern.facebook.com/D60250565
This PR updates CMake and Bazel dependencies for #100138.