diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-18 15:23:32 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-18 15:23:32 +0200 |
commit | cae6837be62750557d7fe05c13c23b0ae55e3300 (patch) | |
tree | 05b8b7568ff1a70d832218a6618f4c2167faa6f9 | |
parent | 0ce28046573fa37026ce018f92bd120e55d5491b (diff) |
GEMV baseline: decrease repetitions
-rw-r--r-- | GEMV/baselines/cpu/gemv_openmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GEMV/baselines/cpu/gemv_openmp.c b/GEMV/baselines/cpu/gemv_openmp.c index 0a74c10..464dcb1 100644 --- a/GEMV/baselines/cpu/gemv_openmp.c +++ b/GEMV/baselines/cpu/gemv_openmp.c @@ -142,7 +142,7 @@ int main(int argc, char *argv[]) #endif Timer timer; - for (int i = 0; i < 100; i++) { + for (int i = 0; i < 40; i++) { #pragma omp parallel { |