Francesco Rizzi
Francesco Rizzi
# Contains team-level implementations for: ## NonModifying sequence algorithms - `count_if` ## Modifying sequence algorithms (complete) - `fill`, `fill_n`, `replace`, `replace_if`, `replace_copy`, `replace_copy_if`, `copy`, `copy_n`, `copy_if`, `copy_backward`, `transform`, `generate`, `generate_n`,...
- [ ] 3.1 Make top level `Kokkos::sort(Kokkos::View)` map toThrust/RocThrust/std::sort/OneAPI as appropriate (@jstrzebonski) - [ ] 3.2 Explore generic implementation of RadixSort and BitonicSort (@PhilMiller) - report on potential issues...
BEFORE this PR: `core/unit_tests/headers_self_contained` was testing headers from core, algorithms and containers. IMO, the core unit tests should only test core things. and similarly the other components. So this PR...
hello @ericniebler @kirkshoop ! Friendly pinging you on this just because i saw your names associated with recent activity :) I am trying to come up with an example where...
- [x] Develop CMake build system to build all the KokkosTools - [x] Extent the tools cmake build system to optionally build Caliper and Apex (i.e. translate typical Kokkos options...
# Statement - [x] 2.1 - explore current setup of testing - choose one Kokkos Core performance test and one Kokkos Kernels tests as design vehicle - propose and justify...
## Content Impl of `is_team_handle` (based on [this concept syntax](https://kokkos.github.io/kokkos-core-wiki/API/core/policies/TeamHandleConcept.html)) and a test. ## Notes/caveats - test is disabled for OpenMPTarget because it would fail due to [this](https://github.com/kokkos/kokkos/blob/2d6cbad7e079eb45ae69ac6a59929d9fcf10409a/core/src/OpenMPTarget/Kokkos_OpenMPTarget_Exec.hpp#L860) : ```...
cuda: reduction with `RangePolicy`: fix grid dimensions to work for large values and avoid overflow
This PR addresses https://github.com/kokkos/kokkos/issues/6517 ## what is the issue The reduction did not work in that test case because, currently, the code setting the grid in the cuda reduction via...
# before this PR Inside `algorithms/src/std_algorithms`, beside the actual algorithms we also have the following things: - `Kokkos::Experimental::(c)begin, (c)end` , `Kokkos::Experimental::distance(...)` - the kokkos random access iterator class - traits...
starting PR to address https://github.com/kokkos/kokkos/issues/6809