From 19df225bc88a67871b3dbc7198b7fff38683c6a3 Mon Sep 17 00:00:00 2001 From: Konrad Kusiak Date: Mon, 4 Mar 2024 22:32:54 +0000 Subject: [PATCH] Changed to standalone function --- source/adapters/hip/enqueue.cpp | 69 ++++++++++++++++----------------- 1 file changed, 33 insertions(+), 36 deletions(-) diff --git a/source/adapters/hip/enqueue.cpp b/source/adapters/hip/enqueue.cpp index d331c0891d..a1b78bf936 100644 --- a/source/adapters/hip/enqueue.cpp +++ b/source/adapters/hip/enqueue.cpp @@ -761,6 +761,30 @@ UR_APIEXPORT ur_result_t UR_APICALL urEnqueueMemBufferCopyRect( return Result; } +static inline void memsetRemainPattern(hipStream_t Stream, uint32_t PatternSize, + size_t Size, const void *pPattern, + hipDeviceptr_t Ptr) { + + // Calculate the number of patterns, stride and the number of times the + // pattern needs to be applied. + auto NumberOfSteps = PatternSize / sizeof(uint8_t); + auto Pitch = NumberOfSteps * sizeof(uint8_t); + auto Height = Size / NumberOfSteps; + + for (auto step = 4u; step < NumberOfSteps; ++step) { + // take 1 byte of the pattern + auto Value = *(static_cast(pPattern) + step); + + // offset the pointer to the part of the buffer we want to write to + auto OffsetPtr = reinterpret_cast(reinterpret_cast(Ptr) + + (step * sizeof(uint8_t))); + + // set all of the pattern chunks + UR_CHECK_ERROR(hipMemset2DAsync(OffsetPtr, Pitch, Value, sizeof(uint8_t), + Height, Stream)); + } +} + // HIP has no memset functions that allow setting values more than 4 bytes. UR // API lets you pass an arbitrary "pattern" to the buffer fill, which can be // more than 4 bytes. We must break up the pattern into 1 byte values, and set @@ -776,42 +800,14 @@ ur_result_t commonMemSetLargePattern(hipStream_t Stream, uint32_t PatternSize, auto Value = *(static_cast(pPattern)); UR_CHECK_ERROR(hipMemsetD32Async(Ptr, Value, Count32, Stream)); - auto memsetRemainPattern = [&Stream, &pPattern, - &Ptr](const auto Size, const auto PatternSize) { - // Calculate the number of patterns, stride and the number of times the - // pattern needs to be applied. - auto NumberOfSteps = PatternSize / sizeof(uint8_t); - auto Pitch = NumberOfSteps * sizeof(uint8_t); - auto Height = Size / NumberOfSteps; - - for (auto step = 4u; step < NumberOfSteps; ++step) { - // take 1 byte of the pattern - auto Value = *(static_cast(pPattern) + step); - - // offset the pointer to the part of the buffer we want to write to - auto OffsetPtr = reinterpret_cast( - reinterpret_cast(Ptr) + (step * sizeof(uint8_t))); - - // set all of the pattern chunks - UR_CHECK_ERROR(hipMemset2DAsync(OffsetPtr, Pitch, Value, sizeof(uint8_t), - Height, Stream)); - } - }; - // There is a bug in ROCm prior to 6.0.0 version which causes hipMemset2D and - // hipMemset3D to behave incorrectly when acting on host pinned memory. In - // such a case the following part of memsetting the remaining part of the - // pattern is emulated with memcpy. -#if HIP_VERSION < 60000000 + // There is a bug in ROCm prior to 6.0.0 version which causes hipMemset2D + // to behave incorrectly when acting on host pinned memory. + // In such a case, the memset operation is partially emulated with memcpy. +#if HIP_VERSION_MAJOR < 6 hipPointerAttribute_t ptrAttribs{}; UR_CHECK_ERROR(hipPointerGetAttributes(&ptrAttribs, (const void *)Ptr)); - const bool ptrIsHost{ptrAttribs.memoryType == hipMemoryTypeHost}; - - // The memoryType member of ptrAttrbis is set to hipMemoryTypeHost for both - // hipHostMalloc and (incorrectly) for hipMallocManaged. So to make sure that - // the Ptr is corresponding to host pinned memory we need to additionally use - // a boolean member of ptrAttribs: isManaged. - if (ptrIsHost && !ptrAttribs.isManaged) { + if (ptrAttribs.hostPointer) { const auto NumOfCopySteps = Size / PatternSize; const auto Offset = sizeof(uint32_t); const auto LeftPatternSize = PatternSize - Offset; @@ -827,10 +823,11 @@ ur_result_t commonMemSetLargePattern(hipStream_t Stream, uint32_t PatternSize, LeftPatternSize, hipMemcpyHostToHost, Stream)); } - } else - memsetRemainPattern(Size, PatternSize); + } else { + memsetRemainPattern(Stream, PatternSize, Size, pPattern, Ptr); + } #else - memsetRemainPattern(Size, PatternSize); + memsetRemainPattern(Stream, PatternSize, Size, pPattern, Ptr); #endif return UR_RESULT_SUCCESS; }