aboutsummaryrefslogtreecommitdiff
path: root/tests/validation
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation')
-rw-r--r--tests/validation/fixtures/FlattenLayerFixture.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/validation/fixtures/FlattenLayerFixture.h b/tests/validation/fixtures/FlattenLayerFixture.h
index 436138b8b4..3de0ba45ae 100644
--- a/tests/validation/fixtures/FlattenLayerFixture.h
+++ b/tests/validation/fixtures/FlattenLayerFixture.h
@@ -76,9 +76,7 @@ protected:
TensorType compute_target(const TensorShape &shape, DataType data_type)
{
TensorShape shape_flatten(shape);
- shape_flatten.set(0, shape[0] * shape[1] * shape[2]);
- shape_flatten.remove_dimension(1);
- shape_flatten.remove_dimension(1);
+ shape_flatten.collapse(3);
// Create tensors
TensorType src = create_tensor<TensorType>(shape, data_type, 1, _fractional_bits);