aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/fixtures/DepthConcatenateLayerFixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark/fixtures/DepthConcatenateLayerFixture.h')
-rw-r--r--tests/benchmark/fixtures/DepthConcatenateLayerFixture.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/benchmark/fixtures/DepthConcatenateLayerFixture.h b/tests/benchmark/fixtures/DepthConcatenateLayerFixture.h
index 292adde49f..7f7ed8b20b 100644
--- a/tests/benchmark/fixtures/DepthConcatenateLayerFixture.h
+++ b/tests/benchmark/fixtures/DepthConcatenateLayerFixture.h
@@ -27,6 +27,7 @@
#include "arm_compute/core/TensorShape.h"
#include "arm_compute/core/Types.h"
#include "arm_compute/core/Utils.h"
+#include "arm_compute/core/utils/misc/ShapeCalculator.h"
#include "tests/AssetsLibrary.h"
#include "tests/Globals.h"
#include "tests/Utils.h"
@@ -99,7 +100,7 @@ public:
src_ptrs.emplace_back(&_srcs.back());
}
- TensorShape dst_shape = calculate_depth_concatenate_shape(src_ptrs);
+ TensorShape dst_shape = misc::shape_calculator::calculate_depth_concatenate_shape(src_ptrs);
_dst = create_tensor<TensorType>(dst_shape, data_type, 1);
_depth_concat.configure(src_ptrs, &_dst);