pub unsafe extern "C" fn cuGraphUpload(
hGraphExec: CUgraphExec,
hStream: CUstream,
) -> CUresult
Expand description
\brief Uploads an executable graph in a stream
Uploads \p hGraphExec to the device in \p hStream without executing it. Uploads of the same \p hGraphExec will be serialized. Each upload is ordered behind both any previous work in \p hStream and any previous launches of \p hGraphExec. Uses memory cached by \p stream to back the allocations owned by \p hGraphExec.
\param hGraphExec - Executable graph to upload \param hStream - Stream in which to upload the graph
\return ::CUDA_SUCCESS, ::CUDA_ERROR_DEINITIALIZED, ::CUDA_ERROR_NOT_INITIALIZED, ::CUDA_ERROR_INVALID_VALUE \note_graph_thread_safety \notefnerr
\sa ::cuGraphInstantiate, ::cuGraphLaunch, ::cuGraphExecDestroy