Daniel Arndt

Results 161 issues of Daniel Arndt

Draft until we have merged all other changes worth mentioning.

Patch Release

The interaction between definitions of the 5 special member functions - copy constructor - move constructor - copy assignment operator - move assignment operator - destructor is very subtle as...

`ThreadsExecTeamMember` needs to annotate member functions with `KOKKOS_FUNCTION` since they might be used inside a `TeamPolicy` functor. On the other hand, some host only functions are used in `team_fan_[in|out]`. The...

Locally, I'm seeing something like ``` #include #include #include // default: 0.131131 // atomic_bypass: 0.106567 // exec: 0.0682449 // exec+fence: 0.0745077 // exec+fence+bypass: 0.066047 // +return reference: 0.00800262 // only...

Just a quick heads up: Clang (or more precisely LLVM) currently results in ICE (internal compiler error) when compiling these builtins. The ICE is present in upstream x86-64 clang versions...

Fixes #8624. This pull request ensures that the destruction of an execution space instance (when it's use count reaches 0) fences that instance so that there wouldn't be any kernels...

#8563 disables `view_customization_scratch_memory` for HPX due to intermittent segmentation faults. We should investigate in honest what's going on there.

Following the discussion in https://github.com/kokkos/kokkos/pull/8324#discussion_r2376808978. We are currently setting the `PATH` variable explicitly for testing when buiding with Windows shared DLLs, https://github.com/kokkos/kokkos/blob/fb6aa7bff5dccac703ad1b3ba6ccbb3d9206c6af/.github/workflows/continuous-integration-windows.yml#L50 (since Windows doesn't have a rpath equivalent) but...

> I think it would also be worth testing the compiler version in addition to the CMake version. We can discuss what exactly we want to check in a different...