Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -1320,7 +1320,7 @@ ur_result_t ur_command_list_manager::appendKernelLaunchWithArgsExp(
} else {
// We cannot pass cooperativeKernelLaunchRequested to
// appendKernelLaunchWithArgsExpOld() because appendKernelLaunch() must
// check it on its own since it is called also from enqueueKernelLaunch().
// check it on its own since it is called from other kernel launch paths.
return appendKernelLaunchWithArgsExpOld(
hKernel, workDim, pGlobalWorkOffset, pGlobalWorkSize, pLocalWorkSize,
numArgs, pArgs, launchPropList, waitListView, phEvent);
Expand Down Expand Up @@ -1401,7 +1401,7 @@ ur_command_list_manager::appendGraph(ur_exp_executable_graph_handle_t hGraph,
return UR_RESULT_SUCCESS;
}

ur_result_t ur_command_list_manager::isGraphCaptureActive(bool *pResult) {
ur_result_t ur_command_list_manager::queryGraphCaptureActive(bool *pResult) {
if (!checkGraphExtensionSupport(hContext.get())) {
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ struct ur_command_list_manager {
ur_result_t beginGraphCapture();
ur_result_t beginCaptureIntoGraph(ur_exp_graph_handle_t hGraph);
ur_result_t endGraphCapture(ur_exp_graph_handle_t *phGraph);
ur_result_t isGraphCaptureActive(bool *pResult);
ur_result_t queryGraphCaptureActive(bool *pResult);
ur_result_t getGraph(ur_exp_graph_handle_t *phGraph);

v2::raii::command_list_unique_handle &&releaseCommandList();
Expand Down
Loading
Loading