[Mlir-commits] [mlir] [mlir][spirv] Add support for SPV_ARM_graph extension - part 1 (PR #151934)
Igor Wodiany
llvmlistbot at llvm.org
Thu Aug 7 09:05:38 PDT 2025
================
@@ -387,6 +387,13 @@ class OpaqueType<string dialect, string name, string summary>
def FunctionType : Type<CPred<"::llvm::isa<::mlir::FunctionType>($_self)">,
"function type", "::mlir::FunctionType">;
+// Graph Type
+
+// Any graph type.
+def GraphType : Type<CPred<"::llvm::isa<::mlir::GraphType>($_self)">,
+ "graph type", "::mlir::GraphType">;
+
+
----------------
IgWod-IMG wrote:
nit: Superfluous new line?
https://github.com/llvm/llvm-project/pull/151934
More information about the Mlir-commits
mailing list