Pierre Kestener
Pierre Kestener
**Describe the bug** Currently, when using this (e.g. with Kokkos::Serial backend): ```c++ Kokkos::parallel_for( "test_mdrange", Kokkos::MDRangePolicy({ 100, 100 }, { 95, 105 }), KOKKOS_LAMBDA(const int i, const int j) { printf("i,j=%d,%d\n",...
A tentative fix for this example. the type `simd::simd`, used in the old example, disappeared, so replaced by `simd_t = Kokkos::Experimental::native_simd` which width/ simd size is 1 when exec space...
**Description** Currently the "points" examples are disabled in the cmake build. These examples require pts data files (one file per MPI process). There is also a comment in example/CMakelist.txt stating...
**Description** Currently in `example/CMakeLists.txt`, 3d examples are only built when target `P4EST::P8EST` is defined. The problem is that this target is never defined in p4est, because p8est sources are compiled...
Currently cmake project version is 0.5.0 but the latest git release is 0.99.0 Can one the maintainers make a new release where both version number agree ?
Trying to fix #220
This is just a remark/suggestion: - currently the top level [README.md](https://github.com/kokkos/pykokkos/blob/main/README.md) recommends to build pykokkos-base with option `ENABLE_MEMORY_TRAITS=OFF` - doing so, when running [05_simple_atomics.py](https://github.com/kokkos/pykokkos/blob/main/examples/kokkos/05_simple_atomics.py) it fails with the following error...
Currently example [random_sum.py](https://github.com/kokkos/pykokkos/blob/main/examples/kokkos/random_sum.py) fails at compile time with the following error: ```shell Initialized view: [ 5 7 5 2 6 10 1 8 0 2] /home/kestenerp/miniconda3/envs/pykokkos/lib/python3.11/site-packages/pykokkos_base-0.0.7-py3.11-linux-x86_64.egg/include/kokkos/OpenMP/Kokkos_OpenMP_Parallel_Reduce.hpp(64): error: function "pk_functor_RandomSum::operator() [with...
- header `` was missing in a few location - clang-format was applied at those locations (which induced header declaration re-ordering) - notice: option `--cxx-standard 17` must be passed to...
Hello, I was just trying to test a parallel_reduce (sum) using one of the native simd type and found a seg fault that seems to be associated with a wrong...