kokkos-tutorials icon indicating copy to clipboard operation
kokkos-tutorials copied to clipboard

Tutorials for the Kokkos C++ Performance Portability Programming Ecosystem

Results 17 kokkos-tutorials issues
Sort by recently updated
recently updated
newest added

Please insert your email address in this spreadsheet: https://docs.google.com/spreadsheets/d/1Sz-tHJ8dLz8cJ-GJZ0q0vbIyza_Cb3CeqoZirpLBIOQ/edit?usp=drivesdk Use the following private key to SSH into one of these instances once you claim an instance: ``` -----BEGIN RSA PRIVATE...

Hi, I try to run the exercise 01 by my desktop, and the result is correct. However, I cannot get the timer and bandwidth. the results give Total size S...

- enforce using Kokkos::LayoutLeft as the vectorization must happend in the first dimension. - change initial value in array "data" to be non-uniform

Hi, I think there is a bug in simd_warp exercise: `data` is a 2d View declared with the default memory layout, but it really should be declared with LeftLayout, so...

This fixes the issue reported in #52 . I have also modified `gitignore` to silence ~1k changes. Please, let me know if you are not interested. Thanks!

Hello Kokkos Team, I believe the content of `kokkos-tutorials/Exercises/Makefile` is not compatible with the exercises. In fact, it is trying to compile exercises 5-10 which don't exist and it doesn't...

In the slides to the current tutorials (e.g., https://github.com/kokkos/kokkos-tutorials/blob/master/Intro-Full/Slides/KokkosTutorial_PACT19.pdf, p. 101ff) the constructor to TeamPolicy is described as: ```C++ TeamPolicy < ExecutionSpace >( numberOfTeams , teamSize ) ``` while on...

I think my initial question didn't make sense: Q) How does init/finalize work/get called for the fortran interface example?