Commit dec83e43 authored by nishant.b.patel's avatar nishant.b.patel

CI fix

parent db2679e5
......@@ -132,13 +132,13 @@ void op::QuantizedConvolution::validate_and_infer_types()
"Input scale and input zero point shape must be same and 1");
NODE_VALIDATION_CHECK(this,
get_input_partial_shape(4).compatible(PartialShape{}) == 1 &&
get_input_partial_shape(5).compatible(PartialShape{}) == 1,
get_input_partial_shape(4).compatible(PartialShape{}) &&
get_input_partial_shape(5).compatible(PartialShape{}),
"Filter scale and filter zero point shape must be same and 1");
NODE_VALIDATION_CHECK(this,
get_input_partial_shape(6).compatible(PartialShape{}) == 1 &&
get_input_partial_shape(7).compatible(PartialShape{}) == 1,
get_input_partial_shape(6).compatible(PartialShape{}) &&
get_input_partial_shape(7).compatible(PartialShape{}),
"Output scale and output zero point shape must be same and 1");
const PartialShape& input_shape = get_input_partial_shape(0);
......
......@@ -2238,8 +2238,6 @@ namespace ngraph
auto arg1_shape = args[1].get_shape();
auto result_shape = out[0].get_shape();
auto scales_size = shape_size(node->get_input_shape(2));
writer << "reference::convolution<" << args[0].get_type() << " , "
<< args[1].get_type() << " , " << out[0].get_type() << ", int32_t>("
<< args[0].get_name() << ",\n";
......
......@@ -34,7 +34,6 @@
#include "ngraph/op/fused/conv_fused.hpp"
#include "ngraph/op/get_output_element.hpp"
#include "ngraph/op/parameter.hpp"
#include "ngraph/op/quantized_convolution.hpp"
#include "ngraph/pass/constant_folding.hpp"
#include "ngraph/pass/manager.hpp"
#include "ngraph/pass/visualize_tree.hpp"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment