Nevin ":-)" Liber

Results 56 comments of Nevin ":-)" Liber

@masterleinad @tpadioleau I think the error in https://github.com/kokkos/kokkos/pull/6954#issuecomment-2102675742 may be a legitimate bug unrelated to deduction guides. `ValueType` is deducing to `Sum` (which doesn't have a default constructor), but there...

[#6109 (comment)](https://github.com/kokkos/kokkos/pull/6109#discussion_r1275432904) was asking for a `simd_size_type` to be a private type. This change makes it a public type. Is that intentional? I guess I'm asking whether or not this...

In order to get around various compiler bugs with regards to deduction guides, the following changes were made to `TeamPolicy`: Introduction of `Impl::TeamPolicyCommon`, and move the implementation of `TeamPolicy` into...

Here is the proposed workaround for crashing compiler bugs that works with our compiler set: OLD: ```c++ template class TeamPolicy : //… { /* … */; }; ``` NEW: ```c++...

Abandoning this in favor of #6117. Keeping this open as a draft until that is approved or further discussion changes the approach.

And even with the opt-in, it is still easy to invoke language undefined behavior. Just because a user says a type is memcpyable doesn't make it so as far as...