195 sor
8.5 KiB
C++
195 sor
8.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.
|
|
*/
|
|
|
|
/*
|
|
Testcase Scenarios :
|
|
Functional-
|
|
1) Instantiate a graph with memcpy node, obtain executable graph and update the
|
|
node params with set exec api call. Make sure they are taking effect.
|
|
Negative-
|
|
1) Pass hGraphExec as nullptr and check if api returns error.
|
|
2) Pass GraphNode as nullptr and check if api returns error.
|
|
3) Pass destination ptr is nullptr, api expected to return error code.
|
|
4) Pass source ptr is nullptr, api expected to return error code.
|
|
5) Pass count as zero, api expected to return error code.
|
|
6) Pass same pointer as source ptr and destination ptr, api expected to return error code.
|
|
7) Pass overlap memory address as source ptr and destination ptr, api expected to return error code.
|
|
7) Pass overlap memory as source ptr and destination ptr where source ptr is ahead of destination
|
|
ptr, api expected to return error code. 8) Pass overlap memory as source ptr and destination ptr
|
|
where destination ptr is ahead of source ptr, api expected to return error code. 9) If count is more
|
|
than allocated size for source and destination ptr, api should return error code. 10) If count is
|
|
less than allocated size for source and destination ptr, api should return error code. 11) Change
|
|
the hipMemcpyKind from H2D to D2H but allocate pointer memory for H2D, api should return error code.
|
|
*/
|
|
|
|
#include <hip_test_common.hh>
|
|
#include <hip_test_checkers.hh>
|
|
#include <hip_test_kernels.hh>
|
|
#include <memcpy1d_tests_common.hh>
|
|
|
|
/* Test verifies hipGraphExecMemcpyNodeSetParams1D API Functional scenarios.
|
|
*/
|
|
TEST_CASE("Unit_hipGraphExecMemcpyNodeSetParams1D_Functional") {
|
|
constexpr size_t N = 1024;
|
|
constexpr size_t Nbytes = N * sizeof(int);
|
|
constexpr auto blocksPerCU = 6; // to hide latency
|
|
constexpr auto threadsPerBlock = 256;
|
|
int *A_d, *B_d, *C_d;
|
|
int *A_h, *B_h, *C_h;
|
|
size_t NElem{N};
|
|
|
|
int* hData = reinterpret_cast<int*>(malloc(Nbytes));
|
|
REQUIRE(hData != nullptr);
|
|
memset(hData, 0, Nbytes);
|
|
|
|
hipGraphNode_t memcpyH2D_A, memcpyH2D_B, memcpyD2H_C;
|
|
hipGraphNode_t kernel_vecAdd;
|
|
hipKernelNodeParams kernelNodeParams{};
|
|
hipGraph_t graph;
|
|
hipGraphExec_t graphExec;
|
|
hipStream_t streamForGraph;
|
|
|
|
HIP_CHECK(hipStreamCreate(&streamForGraph));
|
|
|
|
HipTest::initArrays(&A_d, &B_d, &C_d, &A_h, &B_h, &C_h, N, false);
|
|
unsigned blocks = HipTest::setNumBlocks(blocksPerCU, threadsPerBlock, N);
|
|
|
|
HIP_CHECK(hipGraphCreate(&graph, 0));
|
|
|
|
HIP_CHECK(hipGraphAddMemcpyNode1D(&memcpyH2D_A, graph, nullptr, 0, A_d, A_h, Nbytes,
|
|
hipMemcpyHostToDevice));
|
|
|
|
HIP_CHECK(hipGraphAddMemcpyNode1D(&memcpyH2D_B, graph, nullptr, 0, B_d, B_h, Nbytes,
|
|
hipMemcpyHostToDevice));
|
|
|
|
HIP_CHECK(hipGraphAddMemcpyNode1D(&memcpyD2H_C, graph, nullptr, 0, C_h, C_d, Nbytes,
|
|
hipMemcpyDeviceToHost));
|
|
|
|
void* kernelArgs2[] = {&A_d, &B_d, &C_d, reinterpret_cast<void*>(&NElem)};
|
|
kernelNodeParams.func = reinterpret_cast<void*>(HipTest::vectorADD<int>);
|
|
kernelNodeParams.gridDim = dim3(blocks);
|
|
kernelNodeParams.blockDim = dim3(threadsPerBlock);
|
|
kernelNodeParams.sharedMemBytes = 0;
|
|
kernelNodeParams.kernelParams = reinterpret_cast<void**>(kernelArgs2);
|
|
kernelNodeParams.extra = nullptr;
|
|
HIP_CHECK(hipGraphAddKernelNode(&kernel_vecAdd, graph, nullptr, 0, &kernelNodeParams));
|
|
|
|
// Create dependencies
|
|
HIP_CHECK(hipGraphAddDependencies(graph, &memcpyH2D_A, &kernel_vecAdd, 1));
|
|
HIP_CHECK(hipGraphAddDependencies(graph, &memcpyH2D_B, &kernel_vecAdd, 1));
|
|
HIP_CHECK(hipGraphAddDependencies(graph, &kernel_vecAdd, &memcpyD2H_C, 1));
|
|
|
|
// Instantiate the graph
|
|
HIP_CHECK(hipGraphInstantiate(&graphExec, graph, nullptr, nullptr, 0));
|
|
|
|
HIP_CHECK(hipGraphExecMemcpyNodeSetParams1D(graphExec, memcpyD2H_C, hData, C_d, Nbytes,
|
|
hipMemcpyDeviceToHost));
|
|
|
|
HIP_CHECK(hipGraphLaunch(graphExec, streamForGraph));
|
|
HIP_CHECK(hipStreamSynchronize(streamForGraph));
|
|
|
|
// Verify graph execution result
|
|
HipTest::checkVectorADD(A_h, B_h, hData, N);
|
|
|
|
HipTest::freeArrays(A_d, B_d, C_d, A_h, B_h, C_h, false);
|
|
HIP_CHECK(hipGraphExecDestroy(graphExec));
|
|
HIP_CHECK(hipStreamDestroy(streamForGraph));
|
|
HIP_CHECK(hipGraphDestroy(graph));
|
|
free(hData);
|
|
}
|
|
|
|
|
|
/* Test verifies hipGraphExecMemcpyNodeSetParams1D API Negative scenarios.
|
|
*/
|
|
TEST_CASE("Unit_hipGraphExecMemcpyNodeSetParams1D_Negative") {
|
|
constexpr size_t N = 1024;
|
|
constexpr size_t Nbytes = N * sizeof(int);
|
|
|
|
LinearAllocGuard<int> A_d(LinearAllocs::hipMalloc, Nbytes);
|
|
LinearAllocGuard<int> B_d(LinearAllocs::hipMalloc, Nbytes);
|
|
|
|
hipGraph_t graph;
|
|
HIP_CHECK(hipGraphCreate(&graph, 0));
|
|
hipGraphNode_t memcpyD2D;
|
|
HIP_CHECK(hipGraphAddMemcpyNode1D(&memcpyD2D, graph, nullptr, 0, A_d.ptr(), B_d.ptr(), Nbytes,
|
|
hipMemcpyDeviceToDevice));
|
|
// Instantiate the graph
|
|
hipGraphExec_t graphExec;
|
|
HIP_CHECK(hipGraphInstantiate(&graphExec, graph, NULL, NULL, 0));
|
|
|
|
SECTION("Pass hGraphExec as nullptr") {
|
|
HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams1D(nullptr, memcpyD2D, A_d.ptr(), B_d.ptr(),
|
|
Nbytes, hipMemcpyDeviceToDevice),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Pass GraphNode as nullptr") {
|
|
HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams1D(graphExec, nullptr, A_d.ptr(), B_d.ptr(),
|
|
Nbytes, hipMemcpyDeviceToDevice),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Pass destination ptr is nullptr") {
|
|
HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams1D(graphExec, memcpyD2D, nullptr, B_d.ptr(),
|
|
Nbytes, hipMemcpyDeviceToDevice),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Pass source ptr is nullptr") {
|
|
HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams1D(graphExec, memcpyD2D, A_d.ptr(), nullptr,
|
|
Nbytes, hipMemcpyDeviceToDevice),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Pass count as zero") {
|
|
HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams1D(graphExec, memcpyD2D, A_d.ptr(), B_d.ptr(), 0,
|
|
hipMemcpyDeviceToDevice),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
#if HT_AMD // same pointers allowed on nvidia
|
|
SECTION("Pass same pointer as source ptr and destination ptr") {
|
|
HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams1D(graphExec, memcpyD2D, A_d.ptr(), A_d.ptr(),
|
|
Nbytes, hipMemcpyDeviceToDevice),
|
|
hipErrorInvalidValue);
|
|
}
|
|
#endif
|
|
|
|
SECTION("Pass overlap memory where destination ptr is ahead of source ptr") {
|
|
HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams1D(graphExec, memcpyD2D, A_d.ptr() + 5,
|
|
A_d.ptr(), Nbytes, hipMemcpyDeviceToDevice),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Pass overlap memory where source ptr is ahead of destination ptr") {
|
|
HIP_CHECK_ERROR(
|
|
hipGraphExecMemcpyNodeSetParams1D(graphExec, memcpyD2D, A_d.ptr(), A_d.ptr() + 5, Nbytes,
|
|
hipMemcpyDeviceToDevice),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Copy more than allocated memory") {
|
|
HIP_CHECK_ERROR(hipGraphExecMemcpyNodeSetParams1D(graphExec, memcpyD2D, A_d.ptr(), B_d.ptr(),
|
|
Nbytes + 8, hipMemcpyDeviceToDevice),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
HIP_CHECK(hipGraphExecDestroy(graphExec));
|
|
HIP_CHECK(hipGraphDestroy(graph));
|
|
} |