File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ Base.reset(event::ZeEvent) = zeEventHostReset(event)
6565append_reset! (list:: ZeCommandList , event:: ZeEvent ) = zeCommandListAppendEventReset (list, event)
6666
6767function Base. isdone (event:: ZeEvent )
68- res = unsafe_zeEventQueryStatus (event)
68+ res = unchecked_zeEventQueryStatus (event)
6969 if res == RESULT_NOT_READY
7070 return false
7171 elseif res == RESULT_SUCCESS
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Base.wait(fence::ZeFence, timeout::Number=typemax(UInt64)) =
2929Base. reset (fence:: ZeFence ) = zeFenceReset (fence)
3030
3131function Base. isdone (fence:: ZeFence )
32- res = unsafe_zeFenceQueryStatus (fence)
32+ res = unchecked_zeFenceQueryStatus (fence)
3333 if res == RESULT_NOT_READY
3434 return false
3535 elseif res == RESULT_SUCCESS
You can’t perform that action at this time.
0 commit comments