You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are multiple functions in kernel-runner.cpp which take both OpenCL-specific and CUDA-specific params - only one of which is non-empty / non-null. We could use a single variant class instead. This would be trivial in C++17 (std::variant), but we're stuck on C++14 for now.
The text was updated successfully, but these errors were encountered:
There are multiple functions in
kernel-runner.cpp
which take both OpenCL-specific and CUDA-specific params - only one of which is non-empty / non-null. We could use a single variant class instead. This would be trivial in C++17 (std::variant
), but we're stuck on C++14 for now.The text was updated successfully, but these errors were encountered: