Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions backends/cadence/fusion_g3/operators/op_lt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<op_name>(
ctx, a, b, out);
torch::executor::native::internal::
comparison_tensor_out<std::less, op_name>(ctx, a, b, out);
}

return out;
Expand Down Expand Up @@ -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<op_name>(
ctx, a, b, out);
torch::executor::native::internal::
comparison_scalar_out<std::less, op_name>(ctx, a, b, out);
}

return out;
Expand Down
Loading