Files
rocm-systems/catch/unit/device/hipDeviceSetGetLimit.cc
T
Mirza Halilcevic c6ba00b9de EXSWHTEC-341 - Refactor tests for hipDeviceSetLimit and hipDeviceGetLimit (#425)
Change-Id: Ib1e6937d0e391ec31fac47b89bb59489cff6a284
2024-02-15 19:41:24 +05:30

190 lines
5.3 KiB
C++

/*
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, INNCLUDING 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 ANNY 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.
*/
#include <hip_test_common.hh>
/**
* @addtogroup hipDeviceSetLimit hipDeviceSetLimit
* @{
* @ingroup DeviceTest
* `hipDeviceSetLimit(enum hipLimit_t limit, size_t value)` -
* Set Resource limits of current device.
*/
void DeviceSetLimitTest(hipLimit_t limit) {
size_t old_val;
HIP_CHECK(hipDeviceGetLimit(&old_val, limit));
REQUIRE(old_val != 0);
HIP_CHECK(hipDeviceSetLimit(limit, old_val + 8));
size_t new_val;
HIP_CHECK(hipDeviceGetLimit(&new_val, limit));
REQUIRE(new_val >= old_val + 8);
}
/**
* Test Description
* ------------------------
* - Basic set-get test for `hipLimitStackSize`.
* Test source
* ------------------------
* - unit/device/hipDeviceSetGetLimit.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 5.3
*/
TEST_CASE("Unit_hipDeviceSetLimit_Positive_StackSize") { DeviceSetLimitTest(hipLimitStackSize); }
#if HT_NVIDIA
__device__ __managed__ bool stop = false;
/**
* Test Description
* ------------------------
* - Basic set-get test for `hipLimitPrintfFifoSize`.
* Test source
* ------------------------
* - unit/device/hipDeviceSetGetLimit.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 5.3
*/
TEST_CASE("Unit_hipDeviceSetLimit_Positive_PrintfFifoSize") {
DeviceSetLimitTest(hipLimitPrintfFifoSize);
}
__global__ void PrintfKernel() {
while (!stop) printf("");
}
/**
* Test Description
* ------------------------
* - Tests scenario where we try to set `hipLimitPrintfFifoSize` while a kernel that calls
* `printf()` is running.
* Test source
* ------------------------
* - unit/device/hipDeviceSetGetLimit.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 5.3
*/
TEST_CASE("Unit_hipDeviceSetLimit_Negative_PrintfFifoSize") {
PrintfKernel<<<1, 1>>>();
HIP_CHECK_ERROR(hipDeviceSetLimit(hipLimitPrintfFifoSize, 1024), hipErrorInvalidValue);
stop = true;
HIP_CHECK(hipDeviceSynchronize());
stop = false;
}
/**
* Test Description
* ------------------------
* - Basic set-get test for `hipLimitMallocHeapSize`.
* Test source
* ------------------------
* - unit/device/hipDeviceSetGetLimit.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 5.3
*/
TEST_CASE("Unit_hipDeviceSetLimit_Positive_MallocHeapSize") {
DeviceSetLimitTest(hipLimitMallocHeapSize);
}
__global__ void MallocKernel() {
while (!stop) free(malloc(1));
}
/**
* Test Description
* ------------------------
* - Tests scenario where we try to set `hipLimitMallocHeapSize` while a kernel that calls
* `malloc()` and `free()` is running.
* Test source
* ------------------------
* - unit/device/hipDeviceSetGetLimit.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 5.3
*/
TEST_CASE("Unit_hipDeviceSetLimit_Negative_MallocHeapSize") {
MallocKernel<<<1, 1>>>();
HIP_CHECK_ERROR(hipDeviceSetLimit(hipLimitMallocHeapSize, 1024), hipErrorInvalidValue);
stop = true;
HIP_CHECK(hipDeviceSynchronize());
stop = false;
}
#endif
/**
* Test Description
* ------------------------
* - Negative parameters test for `hipDeviceSetLimit`.
* Test source
* ------------------------
* - unit/device/hipDeviceSetGetLimit.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 5.3
*/
TEST_CASE("Unit_hipDeviceSetLimit_Negative_Parameters") {
HIP_CHECK_ERROR(hipDeviceSetLimit(static_cast<hipLimit_t>(-1), 1024), hipErrorUnsupportedLimit);
}
/**
* End doxygen group hipDeviceSetLimit.
* @}
*/
/**
* @addtogroup hipDeviceGetLimit hipDeviceGetLimit
* @{
* @ingroup DeviceTest
* `hipDeviceGetLimit(size_t* pValue, enum hipLimit_t limit)` -
* Get Resource limits of current device.
*/
/**
* Test Description
* ------------------------
* - Negative parameters test for `hipDeviceGetLimit`.
* Test source
* ------------------------
* - unit/device/hipDeviceSetGetLimit.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 5.2
*/
TEST_CASE("Unit_hipDeviceGetLimit_Negative_Parameters") {
SECTION("nullptr") {
HIP_CHECK_ERROR(hipDeviceGetLimit(nullptr, hipLimitStackSize), hipErrorInvalidValue);
}
SECTION("unsupported limit") {
size_t val;
HIP_CHECK_ERROR(hipDeviceGetLimit(&val, static_cast<hipLimit_t>(-1)), hipErrorUnsupportedLimit);
}
}