/* 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 /** * @addtogroup hipMemGetAddressRange hipMemGetAddressRange * @{ * @ingroup PeerToPeerTest * `hipMemGetAddressRange(hipDeviceptr_t* pbase, size_t* psize, hipDeviceptr_t dptr)` - * Get information on memory allocations. */ /** * Test Description * ------------------------ * - Allocate memory and check if base and size match allocated memory values. * - Check for various offset values from base memory address: * - Host address range * - Device address range * - Pitch address range * Test source * ------------------------ * - unit/memory/hipMemGetAddressRange.cc * Test requirements * ------------------------ * - HIP_VERSION >= 5.2 */ TEST_CASE("Unit_hipMemGetAddressRange_Positive") { hipDeviceptr_t base_ptr; size_t mem_size = 0; const auto allocation_size = GENERATE(kPageSize / 2, kPageSize, kPageSize * 2); const int offset = GENERATE(0, 20, 40, 60, 80); SECTION("Host address range") { using LA = LinearAllocs; LinearAllocGuard host_alloc(LA::hipHostMalloc, allocation_size); HIP_CHECK(hipMemGetAddressRange(&base_ptr, &mem_size, reinterpret_cast(host_alloc.ptr() + offset))); REQUIRE(reinterpret_cast(host_alloc.ptr()) == base_ptr); REQUIRE(mem_size == allocation_size); } SECTION("Device address range") { using LA = LinearAllocs; const auto device_allocation_type = GENERATE(LA::hipMalloc, LA::hipMallocManaged); LinearAllocGuard device_alloc(device_allocation_type, allocation_size); HIP_CHECK(hipMemGetAddressRange(&base_ptr, &mem_size, reinterpret_cast(device_alloc.ptr() + offset))); REQUIRE(reinterpret_cast(device_alloc.ptr()) == base_ptr); REQUIRE(mem_size == allocation_size); } SECTION("Pitch address range") { size_t width = 32; size_t height = 32; LinearAllocGuard2D device_alloc(width, height); HIP_CHECK(hipMemGetAddressRange(&base_ptr, &mem_size, reinterpret_cast(device_alloc.ptr() + offset))); REQUIRE(reinterpret_cast(device_alloc.ptr()) == base_ptr); REQUIRE(mem_size == (device_alloc.pitch() * height)); } } /** * Test Description * ------------------------ * - Validates handling of invalid arguments: * -# When device handle is not valid * - Expected output: return `hipErrorNotFound` * -# When offset is greated than allocated size * - Expected output: return `hipErrorNotFound` * Test source * ------------------------ * - unit/memory/hipMemGetAddressRange.cc * Test requirements * ------------------------ * - HIP_VERSION >= 5.2 */ TEST_CASE("Unit_hipMemGetAddressRange_Negative") { hipDeviceptr_t base_ptr; size_t mem_size = 0; const auto allocation_size = kPageSize / 2; const int offset = kPageSize; LinearAllocGuard dst_alloc(LinearAllocs::hipMalloc, allocation_size); hipDeviceptr_t dummy_ptr = NULL; SECTION("Device pointer is invalid") { HIP_CHECK_ERROR(hipMemGetAddressRange(&base_ptr, &mem_size, dummy_ptr), hipErrorNotFound); } SECTION("Offset is greater than allocated size") { HIP_CHECK_ERROR( hipMemGetAddressRange(&base_ptr, &mem_size, reinterpret_cast(dst_alloc.ptr() + offset)), hipErrorNotFound); } } /** * End doxygen group PeerToPeerTest. * @} */