From 3550698bf8c0f5b1f3459dfe9e47adaaa3cbdf17 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Mon, 19 Jun 2023 15:04:17 +0200 Subject: [PATCH] Use a smaller GEMM workload on RISCV targets --- utest/test_fork.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utest/test_fork.c b/utest/test_fork.c index bd531e7fb..066716058 100644 --- a/utest/test_fork.c +++ b/utest/test_fork.c @@ -67,7 +67,11 @@ CTEST(fork, safety) #ifndef BUILD_DOUBLE exit(0); #else +#ifndef ARCH_RISCV64 blasint n = 1000; +#else + blasint n = 100; +#endif int i; double *a, *b, *c, *d;