/* Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include std::vector GetDevicesWithPrefetchSupport() { const auto device_count = HipTest::getDeviceCount(); std::vector supported_devices; supported_devices.reserve(device_count + 1); for (int i = 0; i < device_count; ++i) { if (DeviceAttributesSupport(i, hipDeviceAttributeManagedMemory, hipDeviceAttributeConcurrentManagedAccess)) { supported_devices.push_back(i); } } return supported_devices; } __global__ void MemPrefetchAsyncKernel(int* C_d, const int* A_d, size_t N) { size_t offset = (blockIdx.x * blockDim.x + threadIdx.x); size_t stride = blockDim.x * gridDim.x; for (size_t i = offset; i < N; i += stride) { C_d[i] = A_d[i] * A_d[i]; } } TEST_CASE("Unit_hipMemPrefetchAsync_Basic", "[multigpu]") { const auto supported_devices = GetDevicesWithPrefetchSupport(); if (supported_devices.empty()) { HipTest::HIP_SKIP_TEST("Test need at least one device with managed memory support"); } LinearAllocGuard alloc1(LinearAllocs::hipMallocManaged, kPageSize); const auto count = kPageSize / sizeof(*alloc1.ptr()); constexpr auto fill_value = 42; std::fill_n(alloc1.ptr(), count, fill_value); for (const auto device : supported_devices) { HIP_CHECK(hipSetDevice(device)); LinearAllocGuard alloc2(LinearAllocs::hipMallocManaged, kPageSize); StreamGuard sg(Streams::created); HIP_CHECK(hipMemPrefetchAsync(alloc1.ptr(), kPageSize, device, sg.stream())); MemPrefetchAsyncKernel<<>>(alloc2.ptr(), alloc1.ptr(), count); HIP_CHECK(hipGetLastError()); HIP_CHECK(hipStreamSynchronize(sg.stream())); ArrayFindIfNot(alloc1.ptr(), fill_value, count); ArrayFindIfNot(alloc2.ptr(), fill_value * fill_value, count); } HIP_CHECK(hipMemPrefetchAsync(alloc1.ptr(), kPageSize, hipCpuDeviceId)); HIP_CHECK(hipStreamSynchronize(nullptr)); ArrayFindIfNot(alloc1.ptr(), fill_value, count); } TEST_CASE("Unit_hipMemPrefetchAsync_Sync_Behavior") { const auto supported_devices = GetDevicesWithPrefetchSupport(); if (supported_devices.empty()) { HipTest::HIP_SKIP_TEST("Test need at least one device with managed memory support"); } const auto device = supported_devices.front(); const auto stream_type = GENERATE(Streams::nullstream, Streams::perThread, Streams::created); StreamGuard sg(stream_type); LinearAllocGuard alloc(LinearAllocs::hipMallocManaged, kPageSize); LaunchDelayKernel(std::chrono::milliseconds{100}, sg.stream()); HIP_CHECK(hipMemPrefetchAsync(alloc.ptr(), kPageSize, device, sg.stream())); HIP_CHECK_ERROR(hipStreamQuery(sg.stream()), hipErrorNotReady); HIP_CHECK(hipStreamSynchronize(sg.stream())); } TEST_CASE("Unit_hipMemPrefetchAsync_Rounding_Behavior") { auto supported_devices = GetDevicesWithPrefetchSupport(); if (supported_devices.empty()) { HipTest::HIP_SKIP_TEST("Test need at least one device with managed memory support"); } const auto device = supported_devices.front(); LinearAllocGuard alloc(LinearAllocs::hipMallocManaged, 3 * kPageSize); REQUIRE_FALSE(reinterpret_cast(alloc.ptr()) % kPageSize); const auto [offset, width] = GENERATE_COPY(std::make_pair(kPageSize / 4, kPageSize / 2), // Withing page std::make_pair(kPageSize / 2, kPageSize), // Across page border std::make_pair(kPageSize / 2, kPageSize * 2)); // Across two page borders HIP_CHECK(hipMemPrefetchAsync(alloc.ptr() + offset, width, device)); HIP_CHECK(hipStreamSynchronize(nullptr)); constexpr auto RoundDown = [](const intptr_t a, const intptr_t n) { return a - a % n; }; constexpr auto RoundUp = [RoundDown](const intptr_t a, const intptr_t n) { return RoundDown(a + n - 1, n); }; const auto base = alloc.ptr(); const auto rounded_up = RoundUp(offset + width, kPageSize); unsigned int attribute = 0; HIP_CHECK(hipMemRangeGetAttribute(&attribute, sizeof(attribute), hipMemRangeAttributeLastPrefetchLocation, reinterpret_cast(base), rounded_up)); REQUIRE(device == static_cast(attribute)); HIP_CHECK(hipMemRangeGetAttribute(&attribute, sizeof(attribute), hipMemRangeAttributeLastPrefetchLocation, alloc.ptr(), 3 * kPageSize)); REQUIRE((rounded_up == 3 * kPageSize ? device : hipInvalidDeviceId) == static_cast(attribute)); } TEST_CASE("Unit_hipMemPrefetchAsync_Negative_Parameters") { auto supported_devices = GetDevicesWithPrefetchSupport(); if (supported_devices.empty()) { HipTest::HIP_SKIP_TEST("Test need at least one device with managed memory support"); } supported_devices.push_back(hipCpuDeviceId); const auto device = GENERATE_COPY(from_range(supported_devices)); LinearAllocGuard alloc(LinearAllocs::hipMallocManaged, kPageSize); SECTION("dev_ptr == nullptr") { HIP_CHECK_ERROR(hipMemPrefetchAsync(nullptr, kPageSize, device), hipErrorInvalidValue); } #if HT_NVIDIA SECTION("dev_ptr points to non-managed memory") { LinearAllocGuard alloc(LinearAllocs::hipMalloc, kPageSize); HIP_CHECK_ERROR(hipMemPrefetchAsync(alloc.ptr(), kPageSize, device), hipErrorInvalidValue); } #endif SECTION("count == 0") { HIP_CHECK_ERROR(hipMemPrefetchAsync(alloc.ptr(), 0, device), hipErrorInvalidValue); } SECTION("count larger than allocation size") { HIP_CHECK_ERROR(hipMemPrefetchAsync(alloc.ptr(), kPageSize + 1, device), hipErrorInvalidValue); } SECTION("Invalid device") { HIP_CHECK_ERROR(hipMemPrefetchAsync(alloc.ptr(), kPageSize, hipInvalidDeviceId), hipErrorInvalidDevice); } }