Skip to content

Commit

Permalink
Test NVHPC suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Jan 13, 2025
1 parent d122204 commit 196fefd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cub/cub/agent/agent_spmv_orig.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,12 @@ struct CCCL_DEPRECATED_BECAUSE("Use the cuSPARSE library instead") AgentSpmvPoli
* Signed integer type for sequence offsets
*/
template <typename ValueT, typename OffsetT>
struct CCCL_DEPRECATED_BECAUSE("Use the cuSPARSE library instead") SpmvParams
struct
// with NVHPC, we get a deprecation warning in the implementation of cudaLaunchKernelEx, which we cannot suppress :/
#if !_CCCL_COMPILER(NVHPC)
CCCL_DEPRECATED_BECAUSE("Use the cuSPARSE library instead")
#endif
SpmvParams
{
/// Pointer to the array of \p num_nonzeros values of the corresponding nonzero elements of matrix
/// <b>A</b>.
Expand Down

0 comments on commit 196fefd

Please sign in to comment.