From f6dcac5cee68d478acfa2a7a662c43f221f69b22 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Mon, 8 Jul 2024 16:34:52 +0200 Subject: GEMV: Use identical config for UPMEM and CPU --- GEMV/baselines/cpu/gemv_openmp.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/GEMV/baselines/cpu/gemv_openmp.c b/GEMV/baselines/cpu/gemv_openmp.c index be003fd..d42d9bb 100644 --- a/GEMV/baselines/cpu/gemv_openmp.c +++ b/GEMV/baselines/cpu/gemv_openmp.c @@ -22,8 +22,14 @@ int numa_node_cpu = -1; int main(int argc, char *argv[]) { (void) argc; +/* // upstream config: const size_t rows = 20480; const size_t cols = 8192; +*/ + + // DPU config: 163840 -n 4096 + const size_t rows = 163840; + const size_t cols = 4096; double **A, *b, *x; -- cgit v1.2.3