Skip to content

Commit 64ae254

Browse files
committed
Style
1 parent 4ea94be commit 64ae254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/src/op/constant.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -659,15 +659,15 @@ bool Constant::has_evaluate() const {
659659

660660
bool Constant::evaluate_lower(TensorVector& outputs) const {
661661
if (!outputs.empty() && outputs[0].get_element_type() != m_element_type)
662-
return evaluate(outputs, {}); // for TypeRelaxed<Constant>
662+
return evaluate(outputs, {}); // for TypeRelaxed<Constant>
663663
outputs.resize(1);
664664
outputs[0] = get_tensor_view();
665665
return get_data_ptr() != nullptr;
666666
}
667667

668668
bool Constant::evaluate_upper(TensorVector& outputs) const {
669669
if (!outputs.empty() && outputs[0].get_element_type() != m_element_type)
670-
return evaluate(outputs, {}); // for TypeRelaxed<Constant>
670+
return evaluate(outputs, {}); // for TypeRelaxed<Constant>
671671
outputs.resize(1);
672672
outputs[0] = get_tensor_view();
673673
return get_data_ptr() != nullptr;

0 commit comments

Comments
 (0)