2023-09-27 16:12:19 +05:30
|
|
|
/*
|
|
|
|
|
Copyright (c) 2023 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 WARRANNTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNNESS 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 INN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
OUT OF OR INN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @addtogroup hipMemGetAllocationPropertiesFromHandle hipMemGetAllocationPropertiesFromHandle
|
|
|
|
|
* @{
|
2024-02-02 12:29:18 +05:30
|
|
|
* @ingroup VirtualMemoryManagementTest
|
2023-09-27 16:12:19 +05:30
|
|
|
* `hipError_t hipMemGetAllocationPropertiesFromHandle(hipMemAllocationProp* prop,
|
|
|
|
|
* hipMemGenericAllocationHandle_t handle)` -
|
|
|
|
|
* Retrieve the property structure of the given handle.
|
|
|
|
|
*/
|
|
|
|
|
|
2024-02-02 12:29:18 +05:30
|
|
|
#include <hip_test_common.hh>
|
|
|
|
|
|
|
|
|
|
#include "hip_vmm_common.hh"
|
|
|
|
|
|
|
|
|
|
#define DATA_SIZE (1 << 13)
|
|
|
|
|
|
2023-09-27 16:12:19 +05:30
|
|
|
/**
|
|
|
|
|
* Test Description
|
|
|
|
|
* ------------------------
|
|
|
|
|
* - Functional test to verify the values of hipMemAllocationProp properties.
|
|
|
|
|
* ------------------------
|
2024-02-02 12:29:18 +05:30
|
|
|
* - unit/virtualMemoryManagement/hipMemGetAllocationPropertiesFromHandle.cc
|
2023-09-27 16:12:19 +05:30
|
|
|
* Test requirements
|
|
|
|
|
* ------------------------
|
|
|
|
|
* - HIP_VERSION >= 6.1
|
|
|
|
|
*/
|
|
|
|
|
TEST_CASE("Unit_hipMemGetAllocationPropertiesFromHandle_functional") {
|
|
|
|
|
hipDevice_t device;
|
2025-05-13 00:21:38 +02:00
|
|
|
CTX_CREATE();
|
2023-09-27 16:12:19 +05:30
|
|
|
HIP_CHECK(hipDeviceGet(&device, 0));
|
2024-02-02 12:29:18 +05:30
|
|
|
checkVMMSupported(device);
|
2023-09-27 16:12:19 +05:30
|
|
|
hipMemGenericAllocationHandle_t handle;
|
|
|
|
|
hipMemAllocationProp prop = {};
|
|
|
|
|
prop.type = hipMemAllocationTypePinned;
|
|
|
|
|
prop.location.type = hipMemLocationTypeDevice;
|
|
|
|
|
prop.location.id = device;
|
|
|
|
|
// create a temp prop structure.
|
|
|
|
|
hipMemAllocationProp prop_temp = {};
|
|
|
|
|
size_t granularity = 0;
|
|
|
|
|
int N = DATA_SIZE;
|
|
|
|
|
size_t buffer_size = N * sizeof(int);
|
2024-02-02 12:29:18 +05:30
|
|
|
HIP_CHECK(
|
|
|
|
|
hipMemGetAllocationGranularity(&granularity, &prop, hipMemAllocationGranularityMinimum));
|
2023-09-27 16:12:19 +05:30
|
|
|
REQUIRE(granularity > 0);
|
2024-02-02 12:29:18 +05:30
|
|
|
size_t mem_size = ((granularity + buffer_size - 1) / granularity) * granularity;
|
2023-09-27 16:12:19 +05:30
|
|
|
// Allocate physical memory
|
|
|
|
|
HIP_CHECK(hipMemCreate(&handle, mem_size, &prop, 0));
|
|
|
|
|
// verify properties has been retrived from handle
|
|
|
|
|
HIP_CHECK(hipMemGetAllocationPropertiesFromHandle(&prop_temp, handle));
|
|
|
|
|
REQUIRE(prop_temp.type == prop.type);
|
|
|
|
|
REQUIRE(prop_temp.location.type == prop.location.type);
|
|
|
|
|
REQUIRE(prop_temp.location.id == prop.location.id);
|
|
|
|
|
HIP_CHECK(hipMemRelease(handle));
|
2025-05-13 00:21:38 +02:00
|
|
|
CTX_DESTROY();
|
2023-09-27 16:12:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Test Description
|
|
|
|
|
* ------------------------
|
|
|
|
|
* - Negative Tests.
|
|
|
|
|
* ------------------------
|
2024-02-02 12:29:18 +05:30
|
|
|
* - unit/virtualMemoryManagement/hipMemGetAllocationPropertiesFromHandle.cc
|
2023-09-27 16:12:19 +05:30
|
|
|
* Test requirements
|
|
|
|
|
* ------------------------
|
|
|
|
|
* - HIP_VERSION >= 6.1
|
|
|
|
|
*/
|
|
|
|
|
TEST_CASE("Unit_hipMemGetAllocationPropertiesFromHandle_Negative") {
|
2025-05-13 00:21:38 +02:00
|
|
|
CTX_CREATE();
|
2023-09-27 16:12:19 +05:30
|
|
|
hipDevice_t device;
|
|
|
|
|
HIP_CHECK(hipDeviceGet(&device, 0));
|
2024-02-02 12:29:18 +05:30
|
|
|
checkVMMSupported(device);
|
2023-09-27 16:12:19 +05:30
|
|
|
hipMemGenericAllocationHandle_t handle;
|
|
|
|
|
hipMemAllocationProp prop = {};
|
|
|
|
|
prop.type = hipMemAllocationTypePinned;
|
|
|
|
|
prop.location.type = hipMemLocationTypeDevice;
|
|
|
|
|
prop.location.id = device;
|
|
|
|
|
// create a temp prop structure.
|
|
|
|
|
hipMemAllocationProp prop_temp = {};
|
|
|
|
|
size_t granularity = 0;
|
|
|
|
|
int N = DATA_SIZE;
|
|
|
|
|
size_t buffer_size = N * sizeof(int);
|
2024-02-02 12:29:18 +05:30
|
|
|
HIP_CHECK(
|
|
|
|
|
hipMemGetAllocationGranularity(&granularity, &prop, hipMemAllocationGranularityMinimum));
|
2023-09-27 16:12:19 +05:30
|
|
|
REQUIRE(granularity > 0);
|
2024-02-02 12:29:18 +05:30
|
|
|
size_t mem_size = ((granularity + buffer_size - 1) / granularity) * granularity;
|
2023-09-27 16:12:19 +05:30
|
|
|
// Allocate physical memory
|
|
|
|
|
HIP_CHECK(hipMemCreate(&handle, mem_size, &prop, 0));
|
|
|
|
|
|
|
|
|
|
SECTION("Nullptr as prop") {
|
2024-02-02 12:29:18 +05:30
|
|
|
REQUIRE(hipMemGetAllocationPropertiesFromHandle(nullptr, handle) == hipErrorInvalidValue);
|
2023-09-27 16:12:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SECTION("null handle") {
|
|
|
|
|
prop.location.type = hipMemLocationTypeInvalid;
|
2025-05-13 00:21:38 +02:00
|
|
|
REQUIRE(hipMemGetAllocationPropertiesFromHandle(
|
|
|
|
|
&prop_temp, (hipMemGenericAllocationHandle_t) nullptr) == hipErrorInvalidValue);
|
2023-09-27 16:12:19 +05:30
|
|
|
}
|
2024-02-02 12:29:18 +05:30
|
|
|
|
2023-09-27 16:12:19 +05:30
|
|
|
HIP_CHECK(hipMemRelease(handle));
|
2025-05-13 00:21:38 +02:00
|
|
|
CTX_DESTROY();
|
2023-09-27 16:12:19 +05:30
|
|
|
}
|
2024-03-22 11:17:00 +01:00
|
|
|
|
2025-10-27 15:06:51 +01:00
|
|
|
TEST_CASE("Unit_hipMemGetAllocationPropertiesFromHandle_Capture") {
|
|
|
|
|
CTX_CREATE();
|
|
|
|
|
hipDevice_t device;
|
|
|
|
|
HIP_CHECK(hipDeviceGet(&device, 0));
|
|
|
|
|
checkVMMSupported(device);
|
|
|
|
|
|
|
|
|
|
hipMemGenericAllocationHandle_t handle;
|
|
|
|
|
hipMemAllocationProp allocation_prop = {};
|
|
|
|
|
allocation_prop.type = hipMemAllocationTypePinned;
|
|
|
|
|
allocation_prop.location.type = hipMemLocationTypeDevice;
|
|
|
|
|
allocation_prop.location.id = device;
|
|
|
|
|
|
|
|
|
|
hipMemAllocationProp allocation_prop_temp = {};
|
|
|
|
|
size_t granularity = 0;
|
|
|
|
|
size_t buffer_size = DATA_SIZE * sizeof(int);
|
|
|
|
|
|
|
|
|
|
HIP_CHECK(hipMemGetAllocationGranularity(&granularity, &allocation_prop,
|
|
|
|
|
hipMemAllocationGranularityMinimum));
|
|
|
|
|
REQUIRE(granularity > 0);
|
|
|
|
|
|
|
|
|
|
size_t mem_size = ((granularity + buffer_size - 1) / granularity) * granularity;
|
|
|
|
|
|
|
|
|
|
HIP_CHECK(hipMemCreate(&handle, mem_size, &allocation_prop, 0));
|
|
|
|
|
|
|
|
|
|
hipStream_t stream = nullptr;
|
|
|
|
|
HIP_CHECK(hipStreamCreate(&stream));
|
|
|
|
|
|
|
|
|
|
GENERATE_CAPTURE();
|
|
|
|
|
BEGIN_CAPTURE(stream);
|
|
|
|
|
HIP_CHECK(hipMemGetAllocationPropertiesFromHandle(&allocation_prop_temp, handle));
|
|
|
|
|
END_CAPTURE(stream);
|
|
|
|
|
|
|
|
|
|
HIP_CHECK(hipStreamDestroy(stream));
|
|
|
|
|
HIP_CHECK(hipMemRelease(handle));
|
|
|
|
|
CTX_DESTROY();
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-22 11:17:00 +01:00
|
|
|
/**
|
|
|
|
|
* End doxygen group VirtualMemoryManagementTest.
|
|
|
|
|
* @}
|
|
|
|
|
*/
|