Skip to content

Commit

Permalink
Explicitly conver to cuuint64_t*
Browse files Browse the repository at this point in the history
  • Loading branch information
vzhurba01 committed Jan 15, 2025
1 parent 4aa2874 commit f185677
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 f185677

Please sign in to comment.