From 202bcbc823d1e7c2af516d0a33a99cf61b9b0666 Mon Sep 17 00:00:00 2001 From: Matthias Cremon Date: Mon, 12 May 2025 08:39:58 -0700 Subject: [PATCH] Forward-fixing G3 lt kernel (#10812) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/10812 Got broken in D74489955, this shoud fix it. Differential Revision: D74558007 --- backends/cadence/fusion_g3/operators/op_lt.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/backends/cadence/fusion_g3/operators/op_lt.cpp b/backends/cadence/fusion_g3/operators/op_lt.cpp index 3f6cdbe3505..08783860271 100644 --- a/backends/cadence/fusion_g3/operators/op_lt.cpp +++ b/backends/cadence/fusion_g3/operators/op_lt.cpp @@ -134,8 +134,8 @@ Tensor& lt_Tensor_out( } else { // @lint-ignore CLANGTIDY facebook-hte-CArray static constexpr const char op_name[] = "lt.Tensor_out"; - torch::executor::native::internal::comparison_tensor_out( - ctx, a, b, out); + torch::executor::native::internal:: + comparison_tensor_out(ctx, a, b, out); } return out; @@ -188,8 +188,8 @@ Tensor& lt_Scalar_out( } else { // @lint-ignore CLANGTIDY facebook-hte-CArray static constexpr const char op_name[] = "lt.Scalar_out"; - torch::executor::native::internal::comparison_scalar_out( - ctx, a, b, out); + torch::executor::native::internal:: + comparison_scalar_out(ctx, a, b, out); } return out;