155 行
5.7 KiB
C++
155 行
5.7 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 <functional>
|
|
|
|
#include <hip_test_common.hh>
|
|
|
|
#include "graph_memset_node_test_common.hh"
|
|
#include "graph_tests_common.hh"
|
|
|
|
/**
|
|
* @addtogroup hipGraphMemsetNodeSetParams hipGraphMemsetNodeSetParams
|
|
* @{
|
|
* @ingroup GraphTest
|
|
* `hipGraphMemsetNodeSetParams(hipGraphNode_t node, const hipMemsetParams *pNodeParams)` -
|
|
* Sets a memset node's parameters
|
|
*/
|
|
|
|
/**
|
|
* Test Description
|
|
* ------------------------
|
|
* - Verify that node parameters get updated correctly by creating a node with valid but
|
|
* incorrect parameters, and then setting them to the correct values after which the graph is
|
|
* executed and the results verified.
|
|
* The parameters are also verified via hipGraphMemsetNodeGetParams, which also constitutes a test
|
|
* for said API.
|
|
* The test is repeated for all valid element sizes(1, 2, 4), and several allocations of different
|
|
* height and width both on host and device
|
|
* Test source
|
|
* ------------------------
|
|
* - unit/graph/hipGraphMemsetNodeSetParams.cc
|
|
* Test requirements
|
|
* ------------------------
|
|
* - HIP_VERSION >= 5.2
|
|
*/
|
|
TEMPLATE_TEST_CASE("Unit_hipGraphMemsetNodeSetParams_Positive_Basic", "", uint8_t, uint16_t,
|
|
uint32_t) {
|
|
CHECK_IMAGE_SUPPORT
|
|
|
|
const auto f = [](hipMemsetParams* params) {
|
|
hipGraph_t graph = nullptr;
|
|
HIP_CHECK(hipGraphCreate(&graph, 0));
|
|
|
|
hipGraphNode_t node = nullptr;
|
|
LinearAllocGuard<TestType> initial_alloc(LinearAllocs::hipMalloc, 2 * sizeof(TestType));
|
|
|
|
hipMemsetParams initial_params = {};
|
|
initial_params.dst = initial_alloc.ptr();
|
|
initial_params.elementSize = sizeof(TestType);
|
|
initial_params.width = 2;
|
|
initial_params.height = 1;
|
|
HIP_CHECK(hipGraphAddMemsetNode(&node, graph, nullptr, 0, &initial_params));
|
|
|
|
hipMemsetParams retrieved_params = {};
|
|
HIP_CHECK(hipGraphMemsetNodeGetParams(node, &retrieved_params));
|
|
REQUIRE(initial_params.dst == retrieved_params.dst);
|
|
REQUIRE(initial_params.elementSize == retrieved_params.elementSize);
|
|
REQUIRE(initial_params.width == retrieved_params.width);
|
|
REQUIRE(initial_params.height == retrieved_params.height);
|
|
REQUIRE(initial_params.pitch == retrieved_params.pitch);
|
|
REQUIRE(initial_params.value == retrieved_params.value);
|
|
|
|
HIP_CHECK(hipGraphMemsetNodeSetParams(node, params));
|
|
HIP_CHECK(hipGraphMemsetNodeGetParams(node, &retrieved_params));
|
|
REQUIRE(params->dst == retrieved_params.dst);
|
|
REQUIRE(params->elementSize == retrieved_params.elementSize);
|
|
REQUIRE(params->width == retrieved_params.width);
|
|
REQUIRE(params->height == retrieved_params.height);
|
|
REQUIRE(params->pitch == retrieved_params.pitch);
|
|
REQUIRE(params->value == retrieved_params.value);
|
|
|
|
hipGraphExec_t graph_exec = nullptr;
|
|
HIP_CHECK(hipGraphInstantiate(&graph_exec, graph, nullptr, nullptr, 0));
|
|
|
|
HIP_CHECK(hipGraphLaunch(graph_exec, hipStreamPerThread));
|
|
HIP_CHECK(hipStreamSynchronize(hipStreamPerThread));
|
|
|
|
HIP_CHECK(hipGraphExecDestroy(graph_exec));
|
|
HIP_CHECK(hipGraphDestroy(graph));
|
|
|
|
return hipSuccess;
|
|
};
|
|
|
|
GraphMemsetNodeCommonPositive<TestType, hipMemsetParams>(f);
|
|
}
|
|
|
|
/**
|
|
* Test Description
|
|
* ------------------------
|
|
* - Verify API behaviour with invalid arguments:
|
|
* -# node is nullptr
|
|
* -# pNodeParams is nullptr
|
|
* -# pNodeParams::dst is nullptr
|
|
* -# pNodeParams::elementSize is different from 1, 2, and 4
|
|
* -# pNodeParams::width is zero
|
|
* -# pNodeParams::width is larger than the allocated memory region
|
|
* -# pNodeParams::height is zero
|
|
* -# pNodeParams::pitch is less than width when height is more than 1
|
|
* -# pNodeParams::pitch * pMemsetParams::height is larger than the allocated memory region
|
|
* Test source
|
|
* ------------------------
|
|
* - unit/graph/hipGraphMemsetNodeSetParams.cc
|
|
* Test requirements
|
|
* ------------------------
|
|
* - HIP_VERSION >= 5.2
|
|
*/
|
|
TEST_CASE("Unit_hipGraphMemsetNodeSetParams_Negative_Parameters") {
|
|
using namespace std::placeholders;
|
|
|
|
hipGraph_t graph = nullptr;
|
|
HIP_CHECK(hipGraphCreate(&graph, 0));
|
|
|
|
LinearAllocGuard<int> alloc(LinearAllocs::hipMalloc, 4 * sizeof(int));
|
|
hipMemsetParams params = {};
|
|
params.dst = alloc.ptr();
|
|
params.elementSize = sizeof(*alloc.ptr());
|
|
params.width = 1;
|
|
params.height = 1;
|
|
params.value = 42;
|
|
|
|
hipGraphNode_t node = nullptr;
|
|
HIP_CHECK(hipGraphAddMemsetNode(&node, graph, nullptr, 0, ¶ms))
|
|
|
|
SECTION("node == nullptr") {
|
|
HIP_CHECK_ERROR(hipGraphMemsetNodeSetParams(nullptr, ¶ms), hipErrorInvalidValue);
|
|
}
|
|
|
|
MemsetCommonNegative(std::bind(hipGraphMemsetNodeSetParams, node, _1), params);
|
|
|
|
HIP_CHECK(hipGraphDestroy(graph));
|
|
}
|
|
|
|
/**
|
|
* End doxygen group GraphTest.
|
|
* @}
|
|
*/
|