├── .gitignore ├── Makefile ├── README.md ├── local_mpi_to_gpu.cu └── submit.lsf /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | local_mpi_to_gpu 3 | map_ranks.* 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olcf-tutorials/local_mpi_to_gpu/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olcf-tutorials/local_mpi_to_gpu/HEAD/README.md -------------------------------------------------------------------------------- /local_mpi_to_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olcf-tutorials/local_mpi_to_gpu/HEAD/local_mpi_to_gpu.cu -------------------------------------------------------------------------------- /submit.lsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olcf-tutorials/local_mpi_to_gpu/HEAD/submit.lsf --------------------------------------------------------------------------------