Closed stotko closed 4 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 97.38%. Comparing base (
1b6a331
) to head (6976d5b
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
With thrust 2.3.0+ (bundled in CUDA 12.4+), their implementation of
pair
have been replaced bycuda:std::pair
from libcudacxx. Unfortunately, this causes compiler errors due to ambiguous namespace resolution for overlapping functionality between stdgpu and libcudacxx. Replace the alias to thrust'spair
class with a custom implementation to fix these issues.This further reduces the dependency to thrust, see #279.