tao::get overload ambiguity workaround for Cuda10.2 and GCC9.3.1/MSVC2019 #6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
First, kudos for your nice and clean c++ implementation.
I am currently using Cuda 10.2 (which has bug regarding the std::tuple implementation...) with either gcc9.3.1 and MSVC2019 with c++14 and the samples fails to compile inside a cuda kernel.
Specifying return types to the tao::get methods seems to put too much strain on overloads selection.
This is even worse with Cuda 10.2/MSVC2019 where the move semantic tao::get variant is mixed with other signatures as well. My apologies in advance for the name of the "tao::getMove" function and call I added in the tuple move operator, my first shot at function naming is always bad...
I also fixed two std::move calls that IMHO should be replaced with std::forward.
Best Regards