[Mlir-commits] [mlir] Remove reference to removed method. (PR #96315)

Thomas Preud'homme llvmlistbot at llvm.org
Fri Jun 21 07:53:38 PDT 2024


https://github.com/RoboTux created https://github.com/llvm/llvm-project/pull/96315

Methodes were removed in dc37dc824aabbbe3d029519f43f0b348dcad7027.


>From 520a30c76568f1d7d0b9ccfb8b45448b89c4a761 Mon Sep 17 00:00:00 2001
From: Thomas Preud'homme <thomas.preudhomme at arm.com>
Date: Fri, 21 Jun 2024 15:45:45 +0100
Subject: [PATCH] Remove reference to removed method.

Methodes were removed in dc37dc824aabbbe3d029519f43f0b348dcad7027.

Change-Id: I6c0115a75c86a0e5b7badf2a0106cfd7a630adf9
---
 mlir/include/mlir/Dialect/Linalg/Utils/Utils.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/mlir/include/mlir/Dialect/Linalg/Utils/Utils.h b/mlir/include/mlir/Dialect/Linalg/Utils/Utils.h
index b3397ae131b56..65a1a8b42e149 100644
--- a/mlir/include/mlir/Dialect/Linalg/Utils/Utils.h
+++ b/mlir/include/mlir/Dialect/Linalg/Utils/Utils.h
@@ -219,7 +219,6 @@ struct FusionInfo {
   LinalgOp fusedProducer;
 };
 
-/// Tensor counterpart of `fuseProducerOfBuffer`.
 /// This implements the fusion part of the "tileAndFuse on tensors"
 /// transformation and thus requires the `consumerOpOperand` to be a
 /// `extract_slice` op (generally obtained by applying the tiling
@@ -227,7 +226,6 @@ struct FusionInfo {
 FailureOr<FusionInfo> fuseProducerOfTensor(OpBuilder &b,
                                            OpOperand &consumerOpOperand);
 
-/// Tensor counterpart of `fuseProducerOfBuffer`.
 /// This implements the fusion part of the "tileAndFuse on tensors"
 /// transformation and thus requires the `consumerOpOperand` to be a
 /// `extract_slice` op (generally obtained by applying the tiling



More information about the Mlir-commits mailing list