Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 1.82 KB

README.md

File metadata and controls

48 lines (35 loc) · 1.82 KB

About Kokkos @ Princeton Bootcamp

Slides for the talk are available in pdf and fig formats.

Resources

Compiling and running the tests

Disclaimer: some of the tests contain lines of code that are very far from following the best practices. They are there to test the compilation process and the runtime, not to teach you how to write good code.

Tests can be compiled using both CMake and GNU Makefile. To build with the latter simply proceed to the test directory and run

# for GNU Makefile
make all -j
make compare

This will run the appropriate test problem and compare the runtimes.

The CMake build, while being the recommended one, requires an installation of kokkos (only for the purposes of this tutorial). This can be done by proceeding to the extern/kokkos directory and running the following:

# to install kokkos for CMake build
cmake -B build -D CMAKE_INSTALL_PREFIX=../kokkos-install -D Kokkos_ENABLE_CUDA=ON -D Kokkos_ENABLE_CUDA_LAMBDA=ON -D CMAKE_CXX_STANDARD=17
cd build
make -j
make install

This will install kokkos in a temporary directory, which can then be found by the CMake. After that proceed to the test directory and run:

# for CMake
cmake -B build
cd build
make -j
cd ..
bash ../compare.sh

In-tree builds are fully supported by kokkos itself, but I found out they conflict with pure CUDA builds performed in these tests, which is why I had to simplify the build process for the purposes of this tutorial.