-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test refactor #2225
Test refactor #2225
Conversation
@@ -158,7 +136,7 @@ NGRAPH_TEST(${BACKEND_NAME}, dequantize_zero_offset) | |||
auto offset = op::Constant::create(input_type, scale_offset_shape, {0}); | |||
auto dequantize = make_shared<op::Dequantize>(X, scale, offset, output_type, quantization_axes); | |||
auto f = make_shared<Function>(dequantize, ParameterVector{X}); | |||
|
|||
#if 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this pre-processing instance, we only need the #else part of this code
…uantize, dequantize and quantize_zero_offset from 'backend/quantize_dequantize' refactored.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pszmel - have you verified in some way that the results of the tests you refactored are the same before and after the refactor?
I copied the expected results from pre-refactored test and add them to expected_output in refactored tests. I guess that tests would not pass if I failed with copying. |
5620a86
to
e696036
Compare
No description provided.