[Mlir-commits] [mlir] [MLIR][Vector] Remove unused and unimplemented Vector_WarpExecuteOnLa… (PR #112338)

Petr Kurapov llvmlistbot at llvm.org
Tue Oct 15 02:23:51 PDT 2024


https://github.com/kurapov-peter created https://github.com/llvm/llvm-project/pull/112338

…ne0Op builder

Removing the declaration instead of implementing the builder as discussed in #110106

>From 8b6b4885e028ca45969e28f13afbcb953ca03146 Mon Sep 17 00:00:00 2001
From: Petr Kurapov <petr.kurapov at gmail.com>
Date: Tue, 15 Oct 2024 11:21:49 +0200
Subject: [PATCH] [MLIR][Vector] Remove unused and unimplemented
 Vector_WarpExecuteOnLane0Op builder

---
 mlir/include/mlir/Dialect/Vector/IR/VectorOps.td | 1 -
 1 file changed, 1 deletion(-)

diff --git a/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td b/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
index b0de7c11b9d436..96321f86ed9d07 100644
--- a/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
+++ b/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
@@ -3084,7 +3084,6 @@ def Vector_WarpExecuteOnLane0Op : Vector_Op<"warp_execute_on_lane_0",
 
   let skipDefaultBuilders = 1;
   let builders = [
-    OpBuilder<(ins "Value":$laneid, "int64_t":$warpSize)>,
     OpBuilder<(ins "TypeRange":$resultTypes, "Value":$laneid,
                    "int64_t":$warpSize)>,
     // `blockArgTypes` are different than `args` types as they are they



More information about the Mlir-commits mailing list