[Mlir-commits] [mlir] [mlir][openacc][NFC] Remove useless OptionalAttr with UnitAttr (PR #68337)
Valentin Clement バレンタイン クレメン
llvmlistbot at llvm.org
Thu Oct 5 10:30:59 PDT 2023
https://github.com/clementval created https://github.com/llvm/llvm-project/pull/68337
`UnitAttr` exits or not so adding `OptionalAttr` around it is not necessary. This patch cleanup this for the `RoutineOp`
>From 2c7174fdf1286da50e2314f746fd463169de75f6 Mon Sep 17 00:00:00 2001
From: Valentin Clement <clementval at gmail.com>
Date: Thu, 5 Oct 2023 10:28:57 -0700
Subject: [PATCH] [mlir][openacc] Remove useless OptionalAttr with UnitAttr
---
flang/lib/Lower/OpenACC.cpp | 5 ++---
mlir/include/mlir/Dialect/OpenACC/OpenACCOps.td | 12 ++++++------
2 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/flang/lib/Lower/OpenACC.cpp b/flang/lib/Lower/OpenACC.cpp
index 84ce4cde94200f9..9670cc01b593b7e 100644
--- a/flang/lib/Lower/OpenACC.cpp
+++ b/flang/lib/Lower/OpenACC.cpp
@@ -2981,9 +2981,8 @@ genACC(Fortran::lower::AbstractConverter &converter,
std::stringstream routineOpName;
routineOpName << accRoutinePrefix.str() << routineCounter++;
auto routineOp = modBuilder.create<mlir::acc::RoutineOp>(
- loc, routineOpName.str(), funcName, mlir::StringAttr{}, mlir::UnitAttr{},
- mlir::UnitAttr{}, mlir::UnitAttr{}, mlir::UnitAttr{}, mlir::UnitAttr{},
- mlir::UnitAttr{}, mlir::IntegerAttr{});
+ loc, routineOpName.str(), funcName, mlir::StringAttr{}, false, false,
+ false, false, false, false, mlir::IntegerAttr{});
for (const Fortran::parser::AccClause &clause : clauses.v) {
if (std::get_if<Fortran::parser::AccClause::Seq>(&clause.u)) {
diff --git a/mlir/include/mlir/Dialect/OpenACC/OpenACCOps.td b/mlir/include/mlir/Dialect/OpenACC/OpenACCOps.td
index ce1b4e29cd51b9b..60156cc334c72ec 100644
--- a/mlir/include/mlir/Dialect/OpenACC/OpenACCOps.td
+++ b/mlir/include/mlir/Dialect/OpenACC/OpenACCOps.td
@@ -1563,12 +1563,12 @@ def OpenACC_RoutineOp : OpenACC_Op<"routine", [IsolatedFromAbove]> {
let arguments = (ins SymbolNameAttr:$sym_name,
SymbolNameAttr:$func_name,
OptionalAttr<StrAttr>:$bind_name,
- OptionalAttr<UnitAttr>:$gang,
- OptionalAttr<UnitAttr>:$worker,
- OptionalAttr<UnitAttr>:$vector,
- OptionalAttr<UnitAttr>:$seq,
- OptionalAttr<UnitAttr>:$nohost,
- OptionalAttr<UnitAttr>:$implicit,
+ UnitAttr:$gang,
+ UnitAttr:$worker,
+ UnitAttr:$vector,
+ UnitAttr:$seq,
+ UnitAttr:$nohost,
+ UnitAttr:$implicit,
OptionalAttr<APIntAttr>:$gangDim);
let extraClassDeclaration = [{
More information about the Mlir-commits
mailing list