Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions cub/cub/device/dispatch/dispatch_reduce.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,13 @@ struct DispatchReduce
kernel_source,
launcher_factory);

// Ignore Wmaybe-uninitialized to work around a GCC 13 issue:
Comment thread
alliepiper marked this conversation as resolved.
// https://github.com/NVIDIA/cccl/issues/4053
_CCCL_DIAG_PUSH
_CCCL_DIAG_SUPPRESS_GCC("-Wmaybe-uninitialized")
// Dispatch to chained policy
error = CubDebug(max_policy.Invoke(ptx_version, dispatch));
_CCCL_DIAG_POP
if (cudaSuccess != error)
{
break;
Expand Down
Loading