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;