Skip to content

Commit

Permalink
Remove rogue file
Browse files Browse the repository at this point in the history
  • Loading branch information
lbushi25 committed Feb 6, 2024
1 parent 82be1d7 commit e997664
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sycl/source/detail/usm/usm_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,14 +273,14 @@ void *alignedAlloc(size_t Alignment, size_t Size, const context &Ctxt,
PrepareNotify.scopedNotify(
(uint16_t)xpti::trace_point_type_t::mem_alloc_begin);
#endif
}
void *RetVal = alignedAllocInternal(Alignment, Size, getSyclObjImpl(Ctxt).get(),
getSyclObjImpl(Dev).get(), Kind, PropList);
void *RetVal =
alignedAllocInternal(Alignment, Size, getSyclObjImpl(Ctxt).get(),
getSyclObjImpl(Dev).get(), Kind, PropList);
#ifdef XPTI_ENABLE_INSTRUMENTATION
xpti::addMetadata(PrepareNotify.traceEvent(), "memory_ptr",
reinterpret_cast<size_t>(RetVal));
xpti::addMetadata(PrepareNotify.traceEvent(), "memory_ptr",
reinterpret_cast<size_t>(RetVal));
#endif
return RetVal;
return RetVal;
}

void freeInternal(void *Ptr, const context_impl *CtxImpl) {
Expand Down

0 comments on commit e997664

Please sign in to comment.