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 upstream version of mdspan from #437 uses size_t for indexing the memory buffer. While size_t is a good choice for many cases as it can prevent integer overflow errors, it also increases register pressure and might have performance overhead. We can opt to use other smaller indexing types by removing the conversion as done in trivialfis/mdspan@f18e694 .
The text was updated successfully, but these errors were encountered:
This issue has been labeled inactive-30d due to no recent activity in the past 30 days. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. This issue will be labeled inactive-90d if there is no activity in the next 60 days.
This issue has been labeled inactive-90d due to no recent activity in the past 90 days. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed.
The upstream version of
mdspan
from #437 usessize_t
for indexing the memory buffer. Whilesize_t
is a good choice for many cases as it can prevent integer overflow errors, it also increases register pressure and might have performance overhead. We can opt to use other smaller indexing types by removing the conversion as done in trivialfis/mdspan@f18e694 .The text was updated successfully, but these errors were encountered: