Update evaluates_map.cpp (#14475)

This commit is contained in:
Aleksandr Voron 2022-12-08 13:59:46 +01:00 committed by GitHub
parent 54a774e332
commit d0f183780c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3010,6 +3010,9 @@ bool evaluate(const shared_ptr<op::v1::ConvertLike>& op,
case element::Type_t::f32:
convert_like_v1::evaluate<element::Type_t::f32, OUT_ET>(op, outputs, inputs);
break;
case element::Type_t::f64:
convert_like_v1::evaluate<element::Type_t::f64, OUT_ET>(op, outputs, inputs);
break;
default:
return false;
}