[Mlir-commits] [mlir] [mlir][tosa] Add missing controlflow extension comment (PR #129338)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Feb 28 15:39:24 PST 2025
https://github.com/Jerry-Ge created https://github.com/llvm/llvm-project/pull/129338
A previous patch(#128216) that added the support for the control flow extension overlooked adding a comment. This patch adds the comment.
>From 2b06698e82177849c301719494bfae5b4dd00cd5 Mon Sep 17 00:00:00 2001
From: Luke Hutton <luke.hutton at arm.com>
Date: Mon, 9 Dec 2024 14:46:43 +0000
Subject: [PATCH] [mlir][tosa] Add missing controlflow extension comment
A previous patch(#128216) that added the support for the control flow
extension overlooked adding a comment. This patch adds the comment.
Change-Id: I5f922e23c6eecdef70968d5ee3e986446dd147de
Signed-off-by: Luke Hutton <luke.hutton at arm.com>
---
mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td | 1 +
1 file changed, 1 insertion(+)
diff --git a/mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td b/mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td
index ce17ad9362227..dceac03375606 100644
--- a/mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td
+++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td
@@ -233,6 +233,7 @@ class Tosa_I32EnumAttr<string name, string description, string mnemonic,
// FP8E5M2 : 8-bit floating-point operations E5M2.
// FFT : Fast Fourier Transform operations.
// VARIABLE : Stateful variable operations.
+// CONTROLFLOW : Control Flow operations.
//===----------------------------------------------------------------------===//
def Tosa_NONE : I32EnumAttrCase<"none", 0>;
More information about the Mlir-commits
mailing list