Skip to content

Commit c06e7ca

Browse files
committed
FFTFilter test: switch to power of two input size for unit test
1 parent 611b29f commit c06e7ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Filters/Filter_FFT.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* *
33
* ngscopeclient *
44
* *
5-
* Copyright (c) 2012-2024 Andrew D. Zonenberg and contributors *
5+
* Copyright (c) 2012-2026 Andrew D. Zonenberg and contributors *
66
* All rights reserved. *
77
* *
88
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the *
@@ -74,7 +74,7 @@ TEST_CASE("Filter_FFT")
7474
vk::raii::CommandBuffer cmdbuf(std::move(vk::raii::CommandBuffers(*g_vkComputeDevice, bufinfo).front()));
7575

7676
//Create an empty input waveform
77-
const size_t depth = 100000;
77+
const size_t depth = 131072;
7878
UniformAnalogWaveform ua;
7979
ua.m_timescale = 10000; //100 Gsps
8080
ua.m_triggerPhase = 0;

0 commit comments

Comments
 (0)