/* 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 #include #include "graph_tests_common.hh" /** * @addtogroup hipGraphExecMemcpyNodeSetParams hipGraphExecMemcpyNodeSetParams * @{ * @ingroup GraphTest * `hipGraphExecMemcpyNodeSetParams(hipGraphExec_t hGraphExec, hipGraphNode_t node, hipMemcpy3DParms * *pNodeParams)` - Sets the parameters for a memcpy node in the given graphExec */ /** * Test Description * ------------------------ * - Verify that node parameters get updated correctly by creating a node with valid but * incorrect parameters, and the setting them to the correct values in the executable graph. The * executable graph is run and the results of the memcpy verified. The test is run for all possible * memcpy directions, with both the corresponding memcpy kind and hipMemcpyDefault, as well as half * page and full page allocation sizes. Test source * ------------------------ * - unit/graph/hipGraphExecMemcpyNodeSetParams.cc * Test requirements * ------------------------ * - HIP_VERSION >= 5.2 */ TEST_CASE("Unit_hipGraphExecMemcpyNodeSetParams_Positive_Basic") { constexpr auto f = [](void* dst, void* src, size_t count, hipMemcpyKind direction) { hipGraph_t graph = nullptr; HIP_CHECK(hipGraphCreate(&graph, 0)); hipGraphNode_t node = nullptr; const auto offset_src = reinterpret_cast(src) + 1; const auto offset_dst = reinterpret_cast(dst) + 1; auto params = GetMemcpy3DParms(make_hipPitchedPtr(offset_dst, 0, count - 1, 0), make_hipPos(0, 0, 0), make_hipPitchedPtr(offset_src, 0, count - 1, 0), make_hipPos(0, 0, 0), make_hipExtent(count - 1, 1, 1), direction); HIP_CHECK(hipGraphAddMemcpyNode(&node, graph, nullptr, 0, ¶ms)); hipGraphExec_t graph_exec = nullptr; HIP_CHECK(hipGraphInstantiate(&graph_exec, graph, nullptr, nullptr, 0)); params = GetMemcpy3DParms(make_hipPitchedPtr(dst, 0, count, 0), make_hipPos(0, 0, 0), make_hipPitchedPtr(src, 0, count, 0), make_hipPos(0, 0, 0), make_hipExtent(count, 1, 1), direction); HIP_CHECK(hipGraphExecMemcpyNodeSetParams(graph_exec, node, ¶ms)); HIP_CHECK(hipGraphLaunch(graph_exec, hipStreamPerThread)); HIP_CHECK(hipStreamSynchronize(hipStreamPerThread)); HIP_CHECK(hipGraphExecDestroy(graph_exec)); HIP_CHECK(hipGraphDestroy(graph)); return hipSuccess; }; #if HT_NVIDIA MemcpyWithDirectionCommonTests(f); #else using namespace std::placeholders; SECTION("Device to host") { MemcpyDeviceToHostShell(std::bind(f, _1, _2, _3, hipMemcpyDeviceToHost)); } SECTION("Host to device") { MemcpyHostToDeviceShell(std::bind(f, _1, _2, _3, hipMemcpyHostToDevice)); } SECTION("Device to device") { SECTION("Peer access enabled") { MemcpyDeviceToDeviceShell(std::bind(f, _1, _2, _3, hipMemcpyDeviceToDevice)); } SECTION("Peer access disabled") { MemcpyDeviceToDeviceShell(std::bind(f, _1, _2, _3, hipMemcpyDeviceToDevice)); } } SECTION("Device to device with default kind") { SECTION("Peer access enabled") { MemcpyDeviceToDeviceShell(std::bind(f, _1, _2, _3, hipMemcpyDefault)); } SECTION("Peer access disabled") { MemcpyDeviceToDeviceShell(std::bind(f, _1, _2, _3, hipMemcpyDefault)); } } // Disabled on AMD due to defect - EXSWHTEC-209 #if 0 SECTION("Host to host") { MemcpyHostToHostShell(std::bind(f, _1, _2, _3, hipMemcpyHostToHost)); } SECTION("Host to host with default kind") { MemcpyHostToHostShell(std::bind(f, _1, _2, _3, hipMemcpyDefault)); } #endif // Disabled on AMD due to defect - EXSWHTEC-210 #if 0 SECTION("Device to host with default kind") { MemcpyDeviceToHostShell(std::bind(f, _1, _2, _3, hipMemcpyDefault)); } SECTION("Host to device with default kind") { MemcpyHostToDeviceShell(std::bind(f, _1, _2, _3, hipMemcpyDefault)); } #endif #endif } /** * Test Description * ------------------------ * - Verify API behaviour with invalid arguments: * -# pGraphExec is nullptr * -# node is nullptr * -# graph is nullptr * -# pDependencies is nullptr when numDependencies is not zero * -# A node in pDependencies originates from a different graph * -# numDependencies is invalid * -# A node is duplicated in pDependencies * -# dst is nullptr * -# src is nullptr * -# kind is an invalid enum value * -# count is zero * -# count is larger than dst allocation size * -# count is larger than src allocation size * Test source * ------------------------ * - unit/graph/hipGraphAddMemcpyNode.cc * Test requirements * ------------------------ * - HIP_VERSION >= 5.2 */ TEST_CASE("Unit_hipGraphExecMemcpyNodeSetParams_Negative_Parameters") { using namespace std::placeholders; hipGraph_t graph = nullptr; HIP_CHECK(hipGraphCreate(&graph, 0)); int src[2] = {}, dst[2] = {}; auto params = GetMemcpy3DParms(make_hipPitchedPtr(dst, 0, sizeof(dst), 0), make_hipPos(0, 0, 0), make_hipPitchedPtr(src, 0, sizeof(src), 0), make_hipPos(0, 0, 0), make_hipExtent(sizeof(dst), 1, 1), hipMemcpyDefault); hipGraphNode_t node = nullptr; HIP_CHECK(hipGraphAddMemcpyNode(&node, graph, nullptr, 0, ¶ms)); hipGraphExec_t graph_exec = nullptr; HIP_CHECK(hipGraphInstantiate(&graph_exec, graph, nullptr, nullptr, 0)); SECTION("pGraphExec == nullptr") { HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams(nullptr, node, ¶ms), hipErrorInvalidValue); } SECTION("node == nullptr") { HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams(graph_exec, nullptr, ¶ms), hipErrorInvalidValue); } auto f = [&](void* dst, void* src, size_t count, hipMemcpyKind kind) { auto params = GetMemcpy3DParms(make_hipPitchedPtr(dst, 0, sizeof(dst), 0), make_hipPos(0, 0, 0), make_hipPitchedPtr(src, 0, sizeof(src), 0), make_hipPos(0, 0, 0), make_hipExtent(count, 1, 1), kind); return hipGraphExecMemcpyNodeSetParams(graph_exec, node, ¶ms); }; MemcpyWithDirectionCommonNegativeTests(f, dst, src, sizeof(dst), hipMemcpyDefault); SECTION("count == 0") { HIP_CHECK_ERROR( hipGraphExecMemcpyNodeSetParams1D(graph_exec, node, dst, src, 0, hipMemcpyDefault), hipErrorInvalidValue); } SECTION("count larger than dst allocation size") { LinearAllocGuard dev_dst(LinearAllocs::hipMalloc, sizeof(int)); params.dstPtr = make_hipPitchedPtr(dev_dst.ptr(), 0, sizeof(int), 0); HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams(graph_exec, node, ¶ms), hipErrorInvalidValue); } SECTION("count larger than src allocation size") { LinearAllocGuard dev_src(LinearAllocs::hipMalloc, sizeof(int)); params.dstPtr = make_hipPitchedPtr(dev_src.ptr(), 0, sizeof(int), 0); HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams(graph_exec, node, ¶ms), hipErrorInvalidValue); } HIP_CHECK(hipGraphExecDestroy(graph_exec)); HIP_CHECK(hipGraphDestroy(graph)); } /** * Test Description * ------------------------ * - Verify that memcpy direction cannot be altered in an executable graph. The test is run for * all memcpy directions with appropriate memory allocations. * Test source * ------------------------ * - unit/graph/hipGraphExecMemcpyNodeSetParams.cc * Test requirements * ------------------------ * - HIP_VERSION >= 5.2 */ TEST_CASE("Unit_hipGraphExecMemcpyNodeSetParams_Negative_Changing_Memcpy_Direction") { int host; LinearAllocGuard dev(LinearAllocs::hipMalloc, sizeof(int)); const auto [dir, src, dst] = GENERATE_REF(std::make_tuple(hipMemcpyHostToHost, &host, &host), std::make_tuple(hipMemcpyHostToDevice, &host, dev.ptr()), std::make_tuple(hipMemcpyDeviceToHost, dev.ptr(), &host), std::make_tuple(hipMemcpyDeviceToDevice, dev.ptr(), dev.ptr())); hipGraph_t graph = nullptr; HIP_CHECK(hipGraphCreate(&graph, 0)); auto params = GetMemcpy3DParms(make_hipPitchedPtr(dst, sizeof(int), sizeof(int), 0), make_hipPos(0, 0, 0), make_hipPitchedPtr(src, sizeof(int), sizeof(int), 0), make_hipPos(0, 0, 0), make_hipExtent(sizeof(int), 1, 1), dir); hipGraphNode_t node = nullptr; HIP_CHECK(hipGraphAddMemcpyNode(&node, graph, nullptr, 0, ¶ms)); hipGraphExec_t graph_exec = nullptr; HIP_CHECK(hipGraphInstantiate(&graph_exec, graph, nullptr, nullptr, 0)); const auto set_dir = GENERATE(hipMemcpyHostToHost, hipMemcpyHostToDevice, hipMemcpyDeviceToHost, hipMemcpyDeviceToDevice, hipMemcpyDefault); if (dir == set_dir) { HIP_CHECK(hipGraphExecDestroy(graph_exec)); HIP_CHECK(hipGraphDestroy(graph)); return; } params.kind = set_dir; HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams(graph_exec, node, ¶ms), hipErrorInvalidValue); HIP_CHECK(hipGraphExecDestroy(graph_exec)); HIP_CHECK(hipGraphDestroy(graph)); } /** * End doxygen group GraphTest. * @} */