aboutsummaryrefslogtreecommitdiffstats
path: root/test/c/spectral.c
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-09-13 15:18:55 +0200
committerCyril SIX <cyril.six@kalray.eu>2019-09-13 15:18:55 +0200
commit059664368a5f4ed036e87c0a5e0ed1fae1706f3d (patch)
treebb788ef69c4fca167bdae1609d2e929094480f6e /test/c/spectral.c
parentf0f25eabe5b374f20a5db30f652f6e994fff3fb3 (diff)
downloadcompcert-kvx-059664368a5f4ed036e87c0a5e0ed1fae1706f3d.tar.gz
compcert-kvx-059664368a5f4ed036e87c0a5e0ed1fae1706f3d.zip
Reducing further the input size of the tests
Diffstat (limited to 'test/c/spectral.c')
-rw-r--r--test/c/spectral.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/c/spectral.c b/test/c/spectral.c
index 7e56bf7f..b3a34070 100644
--- a/test/c/spectral.c
+++ b/test/c/spectral.c
@@ -43,7 +43,7 @@ void eval_AtA_times_u(int N, const double u[], double AtAu[])
int main(int argc, char *argv[])
{
int i;
- int N = ((argc == 2) ? atoi(argv[1]) : 15);
+ int N = ((argc == 2) ? atoi(argv[1]) : 11);
double * u, * v, vBv, vv;
u = malloc(N * sizeof(double));
v = malloc(N * sizeof(double));