Skip to content

Commit

Permalink
Merge pull request #401 from vzhurba01/101-gcc-warns
Browse files Browse the repository at this point in the history
Explicitly convert to cuuint64_t*
  • Loading branch information
vzhurba01 authored Jan 16, 2025
2 parents 30a97d9 + e6b6dda commit 3d9bc67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4639,7 +4639,7 @@ cdef cudaError_t _cudaGraphExecGetFlags(cudaGraphExec_t graphExec, unsigned long
err = m_global.lazyInitContextState()
if err != cudaSuccess:
return err
err = <cudaError_t>cydriver._cuGraphExecGetFlags(<cydriver.CUgraphExec>graphExec, flags)
err = <cudaError_t>cydriver._cuGraphExecGetFlags(<cydriver.CUgraphExec>graphExec, <cydriver.cuuint64_t *>flags)
if err != cudaSuccess:
_setLastError(err)
return err
Expand Down

0 comments on commit 3d9bc67

Please sign in to comment.