projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
627aee2
)
[MLIR] NFC: fully scope use FastMathFlag.
author
Christian Sigg
<csigg@google.com>
Fri, 3 Feb 2023 10:47:28 +0000
(11:47 +0100)
committer
Christian Sigg
<csigg@google.com>
Fri, 3 Feb 2023 10:47:28 +0000
(11:47 +0100)
Second instance.
mlir/include/mlir/Dialect/Arith/IR/ArithOps.td
patch
|
blob
|
history
diff --git
a/mlir/include/mlir/Dialect/Arith/IR/ArithOps.td
b/mlir/include/mlir/Dialect/Arith/IR/ArithOps.td
index cc1a8b854ca7c8547ab1d04bce9b68496957e1ca..fb790c13e39abdbd58f12e8e7c0afbbc8d4743ee 100644
(file)
--- a/
mlir/include/mlir/Dialect/Arith/IR/ArithOps.td
+++ b/
mlir/include/mlir/Dialect/Arith/IR/ArithOps.td
@@
-82,7
+82,8
@@
class Arith_FloatBinaryOp<string mnemonic, list<Trait> traits = []> :
!listconcat([Pure, DeclareOpInterfaceMethods<ArithFastMathInterface>],
traits)>,
Arguments<(ins FloatLike:$lhs, FloatLike:$rhs,
- DefaultValuedAttr<Arith_FastMathAttr, "FastMathFlags::none">:$fastmath)>,
+ DefaultValuedAttr<
+ Arith_FastMathAttr, "::mlir::arith::FastMathFlags::none">:$fastmath)>,
Results<(outs FloatLike:$result)> {
let assemblyFormat = [{ $lhs `,` $rhs (`fastmath` `` $fastmath^)?
attr-dict `:` type($result) }];