diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-08 16:34:52 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-08 16:34:52 +0200 |
commit | f6dcac5cee68d478acfa2a7a662c43f221f69b22 (patch) | |
tree | fe08b1554b06c4a0bf9d078959130c72a731d732 | |
parent | 66145a5a24774475497c77dcc6e54ae5017d5d57 (diff) |
GEMV: Use identical config for UPMEM and CPU
-rw-r--r-- | GEMV/baselines/cpu/gemv_openmp.c | 6 |
1 files changed, 6 insertions, 0 deletions
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; |