Skip to content

Commit

Permalink
Remove die calls from hip command buffers.
Browse files Browse the repository at this point in the history
  • Loading branch information
martygrant committed Jan 11, 2024
1 parent 365c72c commit 714adc2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions source/adapters/hip/command_buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,17 +117,13 @@ UR_APIEXPORT ur_result_t UR_APICALL urCommandBufferAppendMemBufferFillExp(
ur_exp_command_buffer_handle_t, ur_mem_handle_t, const void *, size_t,
size_t, size_t, uint32_t, const ur_exp_command_buffer_sync_point_t *,
ur_exp_command_buffer_sync_point_t *) {
detail::ur::die("Experimental Command-buffer feature is not "
"implemented for HIP adapter.");
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
}

UR_APIEXPORT ur_result_t UR_APICALL urCommandBufferAppendUSMFillExp(
ur_exp_command_buffer_handle_t, void *, const void *, size_t, size_t,
uint32_t, const ur_exp_command_buffer_sync_point_t *,
ur_exp_command_buffer_sync_point_t *) {
detail::ur::die("Experimental Command-buffer feature is not "
"implemented for HIP adapter.");
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
}

Expand Down

0 comments on commit 714adc2

Please sign in to comment.