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
The span container doesn't have a .cbegin() metho in all C++ versions; and specifically - our cuda::span doesn't. And yet, our code in program.hpp, add_headers(), line 366 - we assume it exists,. We need to drop that assumption, use begin() and end()`, and burden the user with ensuring the range/container they provide lets us use that.
The text was updated successfully, but these errors were encountered:
The span container doesn't have a
.cbegin()
metho in all C++ versions; and specifically - ourcuda::span
doesn't. And yet, our code in program.hpp,add_headers()
, line 366 - we assume it exists,. We need to drop that assumption, usebegin()
and end()`, and burden the user with ensuring the range/container they provide lets us use that.The text was updated successfully, but these errors were encountered: