aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/WidthConcatenateLayerFixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/fixtures/WidthConcatenateLayerFixture.h')
-rw-r--r--tests/validation/fixtures/WidthConcatenateLayerFixture.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/validation/fixtures/WidthConcatenateLayerFixture.h b/tests/validation/fixtures/WidthConcatenateLayerFixture.h
index cf9b12eab6..caad0feee0 100644
--- a/tests/validation/fixtures/WidthConcatenateLayerFixture.h
+++ b/tests/validation/fixtures/WidthConcatenateLayerFixture.h
@@ -92,12 +92,12 @@ protected:
for(const auto &shape : shapes)
{
- srcs.emplace_back(create_tensor<TensorType>(shape, data_type, 1, _fractional_bits));
+ srcs.emplace_back(create_tensor<TensorType>(shape, data_type, 1));
src_ptrs.emplace_back(&srcs.back());
}
TensorShape dst_shape = misc::shape_calculator::calculate_width_concatenate_shape(src_ptrs);
- TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1, _fractional_bits);
+ TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1);
// Create and configure function
FunctionType width_concat;
@@ -141,7 +141,7 @@ protected:
int i = 0;
for(const auto &shape : shapes)
{
- srcs.emplace_back(shape, data_type, 1, _fractional_bits);
+ srcs.emplace_back(shape, data_type, 1);
fill(srcs.back(), i++);
}
@@ -150,9 +150,6 @@ protected:
TensorType _target{};
SimpleTensor<T> _reference{};
-
-private:
- int _fractional_bits{ 1 };
};
} // namespace validation
} // namespace test