From 0c90c5c45f5c1d9946649a28053529f64fb86876 Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Wed, 2 Jun 2021 16:22:38 -0400 Subject: [PATCH] experiment with links --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3764e66..04124a9 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,13 @@ If CUDA is detected, additional binaries can be built. | name | Kind | Reqs. | Ranks | Description | |---------------|-----------|----------|-------|-------------| -|`hello-world` | Test | MPI | 1+ | an MPI hello-world | -|`one-sided` | Test | MPI | 2 | one-sided communication | -|`one-sided-gpu`| Test | MPI+CUDA | 2 | one-sided communication on GPU buffer | -|`persistent` | Benchmark | MPI | 2 | ping-pong time for persistent Send/Recv | -|`send-recv` | Benchmark | MPI | 2 | ping-pong time for Send/Recv | +|[hello-world][1] | Test | MPI | 1+ | an MPI hello-world | +|[one-sided`](https://github.com/cwpearson/mpi_test/blob/master/one_sided.cpp) | Test | MPI | 2 | one-sided communication | +|[one-sided-gpu](https://github.com/cwpearson/mpi_test/blob/master/one_sided_gpu.cpp)| Test | MPI+CUDA | 2 | one-sided communication on GPU buffer | +|[persistent](https://github.com/cwpearson/mpi_test/blob/master/persistent.cpp) | Benchmark | MPI | 2 | ping-pong time for persistent Send/Recv | +|[send-recv](https://github.com/cwpearson/mpi_test/blob/master/send_recv.cpp) | Benchmark | MPI | 2 | ping-pong time for Send/Recv | + +[1]: https://github.com/cwpearson/mpi_test/blob/master/hello_world.cpp ## Build ```