Files
rocm-systems/catch/unit/callback/hipKernelNameRefByPtr.cc
T
milos-mozetic 72e6432739 EXSWHTEC-174 - Implement unit tests for Callback Activity APIs (#6)
Implemented positive and negative test cases for the following APIs:
        - hipApiName
        - hipKernelNameRef
        - hipKernelNameRefByPtr
        - hipGetStreamDeviceId
Enabled build of Callback tests only for AMD platforms, as there is no support for Nvidia platforms.
2023-03-06 08:58:26 +05:30

106 regels
3.5 KiB
C++

/*
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 <resource_guards.hh>
/**
* @addtogroup hipKernelNameRefByPtr hipKernelNameRefByPtr
* @{
* @ingroup CallbackTest
* `hipKernelNameRefByPtr(const void* hostFunction, hipStream_t stream)` -
* returns the name of passed function pointer on desired stream
*/
__global__ void test_kernel() {
return;
}
/**
* Test Description
* ------------------------
* - Creates new stream and a function pointer
* - Verifies that valid API name is returned
* Test source
* ------------------------
* - unit/callback/hipKernelNameRefByPtr.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 5.2
* - Platform specific (AMD)
*/
TEST_CASE("Unit_hipKernelNameRefByPtr_Positive_Basic") {
const void* kernel_ptr{reinterpret_cast<const void*>(&test_kernel)};
StreamGuard stream_guard{Streams::created};
REQUIRE(hipKernelNameRefByPtr(kernel_ptr, stream_guard.stream()) != nullptr);
}
/**
* Test Description
* ------------------------
* - Passes `nullptr` stream while function pointer is valid
* - Verifies that the returned value is not `nullptr`
* Test source
* ------------------------
* - unit/callback/hipKernelNameRefByPtr.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 5.2
* - Platform specific (AMD)
*/
TEST_CASE("Unit_hipKernelNameRefByPtr_Negative_StreamNullptr") {
const void* kernel_ptr{reinterpret_cast<const void*>(&test_kernel)};
StreamGuard stream_guard{Streams::nullstream};
REQUIRE(hipKernelNameRefByPtr(kernel_ptr, stream_guard.stream()) != nullptr);
}
/**
* Test Description
* ------------------------
* - Performs validation when the function pointer is `nullptr`
* -# When stream is `nullptr`
* - Expected output: return `nullptr`
* -# When stream is valid
* - Expected output: return `nullptr`
* Test source
* ------------------------
* - unit/callback/hipKernelNameRefByPtr.cc
* Test requirements
* ------------------------
* - HIP_VERSION >= 5.2
* - Platform specific (AMD)
*/
TEST_CASE("Unit_hipKernelNameRefByPtr_Negative_KernelNullptr") {
const void* kernel_ptr{nullptr};
SECTION("stream is nullptr") {
StreamGuard stream_guard{Streams::nullstream};
REQUIRE(hipKernelNameRefByPtr(kernel_ptr, stream_guard.stream()) == nullptr);
}
SECTION("stream is created") {
StreamGuard stream_guard{Streams::created};
REQUIRE(hipKernelNameRefByPtr(kernel_ptr, stream_guard.stream()) == nullptr);
}
}