[PATCH] D156316: [mlir][capi] Add a Bazel target for the C bindings to the SCF dialect

Alex Zinenko via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 27 04:21:52 PDT 2023


This revision was automatically updated to reflect the committed changes.
Closed by commit rG7fcf6d43b72f: [mlir][capi] Add a Bazel target for the C bindings to the SCF dialect (authored by apaszke, committed by ftynse).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D156316/new/

https://reviews.llvm.org/D156316

Files:
  utils/bazel/llvm-project-overlay/mlir/BUILD.bazel


Index: utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -562,6 +562,19 @@
     ],
 )
 
+mlir_c_api_cc_library(
+    name = "CAPISCF",
+    srcs = ["lib/CAPI/Dialect/SCF.cpp"],
+    hdrs = ["include/mlir-c/Dialect/SCF.h"],
+    capi_deps = [
+        ":CAPIIR",
+    ],
+    includes = ["include"],
+    deps = [
+        ":SCFDialect",
+    ],
+)
+
 mlir_c_api_cc_library(
     name = "CAPISparseTensor",
     srcs = [


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D156316.544700.patch
Type: text/x-patch
Size: 599 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230727/6bc98b85/attachment.bin>


More information about the llvm-commits mailing list