From 059664368a5f4ed036e87c0a5e0ed1fae1706f3d Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Fri, 13 Sep 2019 15:18:55 +0200 Subject: Reducing further the input size of the tests --- test/c/fftsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/c/fftsp.c') diff --git a/test/c/fftsp.c b/test/c/fftsp.c index 316ef714..2dcd4ad2 100644 --- a/test/c/fftsp.c +++ b/test/c/fftsp.c @@ -153,7 +153,7 @@ int main(int argc, char ** argv) float enp, t, y, z, zr, zi, zm, a; float * xr, * xi, * pxr, * pxi; - if (argc >= 2) n = atoi(argv[1]); else n = 6; + if (argc >= 2) n = atoi(argv[1]); else n = 3; np = 1 << n; enp = np; npm = np / 2 - 1; -- cgit