MCPcopy Create free account
hub / github.com/ROCm/clr / hipEventCreateWithFlags

Function hipEventCreateWithFlags

hipamd/src/hip_event.cpp:318–326  ·  view source on GitHub ↗

================================================================================================

Source from the content-addressed store, hash-verified

316
317// ================================================================================================
318hipError_t hipEventCreateWithFlags(hipEvent_t* event, unsigned flags) {
319 HIP_INIT_API(hipEventCreateWithFlags, event, flags);
320
321 if (event == nullptr) {
322 return hipErrorInvalidValue;
323 }
324
325 HIP_RETURN(ihipEventCreateWithFlags(event, flags), *event);
326}
327
328// ================================================================================================
329hipError_t hipEventCreate(hipEvent_t* event) {

Callers

nothing calls this directly

Calls 1

ihipEventCreateWithFlagsFunction · 0.85

Tested by

no test coverage detected