[Mlir-commits] [mlir] Update Ch-2.md (PR #121379)
Vishakh Prakash
llvmlistbot at llvm.org
Mon Dec 30 22:43:27 PST 2024
https://github.com/Vishakh2012 created https://github.com/llvm/llvm-project/pull/121379
line 265 in the file llvm-project/mlir/docs/Tutorials/Toy/Ch-2.md
changed mlir::OpTraits to mlir::OpTrait
>From dd9d5801683e05712989871718dff4c468584cc3 Mon Sep 17 00:00:00 2001
From: Vishakh Prakash <97385752+Vishakh2012 at users.noreply.github.com>
Date: Tue, 31 Dec 2024 12:10:47 +0530
Subject: [PATCH] Update Ch-2.md
line 265 in the file llvm-project/mlir/docs/Tutorials/Toy/Ch-2.md
changed mlir::OpTraits to mlir::OpTrait
---
mlir/docs/Tutorials/Toy/Ch-2.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/docs/Tutorials/Toy/Ch-2.md b/mlir/docs/Tutorials/Toy/Ch-2.md
index b807ee3a20492d..039417c9c9a19d 100644
--- a/mlir/docs/Tutorials/Toy/Ch-2.md
+++ b/mlir/docs/Tutorials/Toy/Ch-2.md
@@ -262,7 +262,7 @@ class ConstantOp : public mlir::Op<
mlir::OpTrait::OneResult,
/// We also provide a utility `getType` accessor that
/// returns the TensorType of the single result.
- mlir::OpTraits::OneTypedResult<TensorType>::Impl> {
+ mlir::OpTrait::OneTypedResult<TensorType>::Impl> {
public:
/// Inherit the constructors from the base Op class.
More information about the Mlir-commits
mailing list