James Beach

Results 8 issues of James Beach

As the following example demonstrates, ```cppcoro::shared_task```s become ```cppcoro::task```s when propagating through ```cppcoro::schedule_on```. Is this intended behaviour? ```cpp auto f() -> cppcoro::shared_task { co_return 0; } auto tp = cppcoro::static_thread_pool{}; auto...

What do you think about allowing, for example, `iif(const float_m&, const float_v&, const float)` and/or `iif(const float_m&, const float, const float)`? ```c++ template Vc_ALWAYS_INLINE std::enable_if_t< is_simd_mask_v && is_simd_vector_v && !is_simd_vector_v...

Hi, Are there any immediate plans to implement more math functions, such as `log()` and `exp()`? If not, is there a reason as to why they haven't been implemented? Thanks.

enhancement

Is an analog of ```hana::template_``` for lifting non-type templates within the scope of Boost.Hana? There is a naive implementation in my answer [here](https://stackoverflow.com/a/57284483/11817970).

Multiple visitation is easy enough to achieve with a library like Boost.Hana (see below), but I think it would be useful functionality for ```for_each_field``` to support directly. ```cpp template constexpr...

```ptxas warning : Unresolved extern variable 'mangled-name' in whole program compilation, ignoring extern qualifier``` is being triggered when using ```inline constexpr``` global variables and ```static constexpr``` member variables in device...

Thanks for this fantastic library @Naios. The amount of work you must have put into the documentation is really appreciated. I'm wondering whether reusable continuation chains are a planned feature,...

help wanted
question

```__has_feature(cxx_thread_local)``` resolves to false when compiling with Clang 9 in CUDA mode, which in turn triggers a C++03 deprecation warning. Is there any plan to support Clang's CUDA mode once...