diff --git a/tensorflow/core/kernels/mkl_quantized_conv_ops_test.cc b/tensorflow/core/kernels/mkl_quantized_conv_ops_test.cc index d001614bc34..c0b53375b0f 100644 --- a/tensorflow/core/kernels/mkl_quantized_conv_ops_test.cc +++ b/tensorflow/core/kernels/mkl_quantized_conv_ops_test.cc @@ -287,7 +287,6 @@ TEST_F(QuantizedConv2DTest, Small) { TEST_F(QuantizedConv2DTest, SmallS8) { const int stride = 1; - const int depth = 1; const int image_width = 3; const int image_height = 3; @@ -342,7 +341,6 @@ TEST_F(QuantizedConv2DTest, SmallS8) { // | 1 | 4 | 2 | // | 0 | 5 |-1 | // | 3 |-1 |-3 | - Tensor filter_float(DT_FLOAT, {filter_size, filter_size, depth, filter_count}); test::FillValues(&filter_float, {1, 4, 2, 0, 5, -1, 3, -1, -3});