fix generate_input range of exp for fp16 (#14685)

Co-authored-by: Irina Efode <irina.efode@intel.com>
This commit is contained in:
Wilson Seok 2023-02-01 02:11:12 +09:00 committed by GitHub
parent 0fd354a502
commit 9f135c9f51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,7 +154,7 @@ ov::runtime::Tensor generate(const std::shared_ptr<ngraph::op::v0::Exp>& node,
size_t port, size_t port,
const ov::element::Type& elemType, const ov::element::Type& elemType,
const ov::Shape& targetShape) { const ov::Shape& targetShape) {
return Activation::generate(elemType, targetShape); return Activation::generate(elemType, targetShape, InputGenerateData(-10, 20, 32768, 1));
} }
ov::runtime::Tensor generate(const std::shared_ptr<ngraph::op::v0::Floor>& node, ov::runtime::Tensor generate(const std::shared_ptr<ngraph::op::v0::Floor>& node,