aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/fixtures/FFTFixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark/fixtures/FFTFixture.h')
-rw-r--r--tests/benchmark/fixtures/FFTFixture.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/benchmark/fixtures/FFTFixture.h b/tests/benchmark/fixtures/FFTFixture.h
index c9c4e3a88e..53897b1b14 100644
--- a/tests/benchmark/fixtures/FFTFixture.h
+++ b/tests/benchmark/fixtures/FFTFixture.h
@@ -36,8 +36,8 @@ namespace test
{
namespace benchmark
{
-template <typename TensorType, typename Function, typename Accessor>
-class FFT1DFixture : public framework::Fixture
+template <typename TensorType, typename Function, typename FFTInfo, typename Accessor>
+class FFTFixture : public framework::Fixture
{
public:
template <typename...>
@@ -48,7 +48,7 @@ public:
dst = create_tensor<TensorType>(shape, data_type, 2);
// Create and configure function
- fft_func.configure(&src, &dst, FFT1DInfo());
+ fft_func.configure(&src, &dst, FFTInfo());
// Allocate tensors
src.allocator()->allocate();