You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
psblas3/test/comm
Stack-1 87eca22895 [WIP] RMA swapdata optimization, nest builder updates, GPU/scorep test tooling
- psi_dswapdata / psb_comm_rma: RMA swapdata optimization (PSCW + Win_allocate)
- psb_d_nest_builder: builder updates
- cuda: Makefile + psb_d_cuda_vect_mod adjustments
- test/comm: spmv/cg drivers, Makefiles, GPU + scorep/strong-scaling scripts
- test/nested: halo-regime test + Makefile/CMake updates
2 weeks ago
..
cg [WIP] RMA swapdata optimization, nest builder updates, GPU/scorep test tooling 2 weeks ago
spmv [WIP] RMA swapdata optimization, nest builder updates, GPU/scorep test tooling 2 weeks ago
swapdata [UPDATE] Added comm tests for all precisions and fixed spmm test in computational_routines 1 month ago
.gitignore [FIX] Fixed comm tests for single process, added guard on neighbor topology data exchange for single process run 3 months ago
README.md [UPDATE] Changed all the interfaces that calls psi_swapdata inside PSBLAS internals for double precision vectors. Added also tests under test/comm/ in order to check psi_swapdata, psb_spmv and psb_cg calls 4 months ago

README.md

Communication scheme tests

This directory contains tests created after adding multiple communication schemes to PSBLAS.

The goal is to exercise and compare communication patterns at different layers:

  • direct halo exchange (psi_swapdata)
  • overlap exchange for transpose/SpMV workflows (psi_swaptran + psi_swapdata)
  • full Krylov solver runs (CG) using different comm schemes.

Communication schemes covered in this area:

  • psb_comm_isend_irecv_ (baseline point-to-point)
  • psb_comm_ineighbor_alltoallv_ (neighbor collective)
  • psb_comm_persistent_ineighbor_alltoallv_ (persistent neighbor collective)

See:

  • swapdata/ for a direct halo-exchange test.
  • spmv/ for an overlap SpMV test that uses different communication schemes.
  • cg/ for a conjugate-gradient solve-time comparison across the three schemes.