Skip to content

Commit

Permalink
#5389: reverted the assert back to or
Browse files Browse the repository at this point in the history
  • Loading branch information
arakhmati committed May 9, 2024
1 parent f500ef2 commit ffc0f10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void EltwiseBinary::validate(const std::vector<Tensor>& input_tensors) const {
const auto& input_tensor_a = input_tensors.at(0);
const auto& input_tensor_b = input_tensors.at(1);
TT_FATAL(
(input_tensor_a.get_legacy_shape() == input_tensor_b.get_legacy_shape()) and
(input_tensor_a.get_legacy_shape() == input_tensor_b.get_legacy_shape()) or
(input_tensor_a.get_legacy_shape().without_padding() ==
input_tensor_b.get_legacy_shape().without_padding()),
"Input shapes must be the same!");
Expand Down

0 comments on commit ffc0f10

Please sign in to comment.