/* 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 : Unit_hipMemcpy2DToArrayAsync_Positive_Default - Test basic async memcpy between host/device and 2D array with hipMemcpy2DToArrayAsync api Unit_hipMemcpy2DToArrayAsync_Positive_Synchronization_Behavior - Test synchronization behavior for hipMemcpy2DToArrayAsync api Unit_hipMemcpy2DToArrayAsync_Positive_ZeroWidthHeight - Test that no data is copied when width/height is set to 0 Unit_hipMemcpy2DToArrayAsync_Negative_Parameters - Test unsuccessful execution of hipMemcpy2DToArrayAsync api when parameters are invalid */ #include "array_memcpy_tests_common.hh" #include #include #include #include TEST_CASE("Unit_hipMemcpy2DToArrayAsync_Positive_Default", "[multigpu]") { CHECK_IMAGE_SUPPORT using namespace std::placeholders; const auto stream_type = GENERATE(Streams::nullstream, Streams::perThread, Streams::created); const StreamGuard stream_guard(stream_type); const hipStream_t stream = stream_guard.stream(); const auto width = GENERATE(16, 32, 48); const auto height = GENERATE(1, 16, 32, 48); SECTION("Host to Array") { Memcpy2DHosttoAShell( std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, width * sizeof(int), height, hipMemcpyHostToDevice, stream), width, height, stream); } SECTION("Host to Array with default kind") { Memcpy2DHosttoAShell( std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, width * sizeof(int), height, hipMemcpyDefault, stream), width, height, stream); } #if HT_NVIDIA // EXSWHTEC-213 SECTION("Device to Array") { SECTION("Peer access disabled") { Memcpy2DDevicetoAShell( std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, width * sizeof(int), height, hipMemcpyDeviceToDevice, stream), width, height, stream); } SECTION("Peer access enabled") { Memcpy2DDevicetoAShell( std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, width * sizeof(int), height, hipMemcpyDeviceToDevice, stream), width, height, stream); } } SECTION("Device to Array with default kind") { SECTION("Peer access disabled") { Memcpy2DDevicetoAShell( std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, width * sizeof(int), height, hipMemcpyDefault, stream), width, height, stream); } SECTION("Peer access enabled") { Memcpy2DDevicetoAShell( std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, width * sizeof(int), height, hipMemcpyDefault, stream), width, height, stream); } } #endif } TEST_CASE("Unit_hipMemcpy2DToArrayAsync_Positive_Synchronization_Behavior") { CHECK_IMAGE_SUPPORT using namespace std::placeholders; HIP_CHECK(hipDeviceSynchronize()); SECTION("Host to Array") { const auto width = GENERATE(16, 32, 48); const auto height = GENERATE(16, 32, 48); MemcpyHtoASyncBehavior(std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, width * sizeof(int), width * sizeof(int), height, hipMemcpyHostToDevice, nullptr), width, height, false); } SECTION("Device to Array") { const auto width = GENERATE(16, 32, 48); const auto height = GENERATE(16, 32, 48); MemcpyDtoASyncBehavior(std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, width * sizeof(int), height, hipMemcpyDeviceToDevice, nullptr), width, height, false); } } TEST_CASE("Unit_hipMemcpy2DToArrayAsync_Positive_ZeroWidthHeight") { CHECK_IMAGE_SUPPORT using namespace std::placeholders; const auto width = 16; const auto height = 16; const auto stream_type = GENERATE(Streams::nullstream, Streams::perThread, Streams::created); const StreamGuard stream_guard(stream_type); const hipStream_t stream = stream_guard.stream(); SECTION("Array to host") { SECTION("Height is 0") { Memcpy2DToArrayZeroWidthHeight( std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, width * sizeof(int), 0, hipMemcpyHostToDevice, stream), width, height, stream); } SECTION("Width is 0") { Memcpy2DToArrayZeroWidthHeight(std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, 0, height, hipMemcpyHostToDevice, stream), width, height, stream); } } SECTION("Array to device") { SECTION("Height is 0") { Memcpy2DToArrayZeroWidthHeight( std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, width * sizeof(int), 0, hipMemcpyDeviceToDevice, stream), width, height, stream); } SECTION("Width is 0") { Memcpy2DToArrayZeroWidthHeight(std::bind(hipMemcpy2DToArrayAsync, _1, 0, 0, _2, _3, 0, height, hipMemcpyDeviceToDevice, stream), width, height, stream); } } } TEST_CASE("Unit_hipMemcpy2DToArrayAsync_Negative_Parameters") { CHECK_IMAGE_SUPPORT using namespace std::placeholders; const auto width = 32; const auto height = 32; const auto allocation_size = 2 * width * height * sizeof(int); const unsigned int flag = hipArrayDefault; #if HT_NVIDIA constexpr auto InvalidStream = [] { StreamGuard sg(Streams::created); return sg.stream(); }; #endif ArrayAllocGuard array_alloc(make_hipExtent(width, height, 0), flag); LinearAllocGuard2D device_alloc(width, height); LinearAllocGuard host_alloc(LinearAllocs::hipHostMalloc, allocation_size); SECTION("Host to Array") { SECTION("dst == nullptr") { HIP_CHECK_ERROR( hipMemcpy2DToArrayAsync(nullptr, 0, 0, host_alloc.ptr(), 2 * width * sizeof(int), width * sizeof(int), height, hipMemcpyHostToDevice, nullptr), hipErrorInvalidHandle); } SECTION("src == nullptr") { HIP_CHECK_ERROR( hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 0, nullptr, 2 * width * sizeof(int), width * sizeof(int), height, hipMemcpyHostToDevice, nullptr), hipErrorInvalidValue); } #if HT_NVIDIA // EXSWHTEC-212 SECTION("spitch < width") { HIP_CHECK_ERROR(hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 0, host_alloc.ptr(), width * sizeof(int) - 10, width * sizeof(int), height, hipMemcpyHostToDevice, nullptr), hipErrorInvalidPitchValue); } SECTION("Offset + width/height overflows") { HIP_CHECK_ERROR(hipMemcpy2DToArrayAsync(array_alloc.ptr(), 1, 0, host_alloc.ptr(), 2 * width * sizeof(int), width * sizeof(int), height, hipMemcpyHostToDevice, nullptr), hipErrorInvalidValue); HIP_CHECK_ERROR(hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 1, host_alloc.ptr(), 2 * width * sizeof(int), width * sizeof(int), height, hipMemcpyHostToDevice, nullptr), hipErrorInvalidValue); } SECTION("Width/height overflows") { HIP_CHECK_ERROR(hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 0, host_alloc.ptr(), 2 * width * sizeof(int), width * sizeof(int) + 1, height, hipMemcpyHostToDevice, nullptr), hipErrorInvalidValue); HIP_CHECK_ERROR(hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 0, host_alloc.ptr(), 2 * width * sizeof(int), width * sizeof(int), height + 1, hipMemcpyHostToDevice, nullptr), hipErrorInvalidValue); } SECTION("Memcpy kind is invalid") { HIP_CHECK_ERROR(hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 0, host_alloc.ptr(), 2 * width * sizeof(int), width * sizeof(int), height, static_cast(-1), nullptr), hipErrorInvalidMemcpyDirection); } #endif } SECTION("Device to Array") { SECTION("dst == nullptr") { HIP_CHECK_ERROR( hipMemcpy2DToArrayAsync(nullptr, 0, 0, device_alloc.ptr(), device_alloc.pitch(), width * sizeof(int), height, hipMemcpyDeviceToDevice, nullptr), hipErrorInvalidHandle); } SECTION("src == nullptr") { HIP_CHECK_ERROR( hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 0, nullptr, device_alloc.pitch(), width * sizeof(int), height, hipMemcpyDeviceToDevice, nullptr), hipErrorInvalidValue); } #if HT_NVIDIA // EXSWHTEC-212 SECTION("spitch < width") { HIP_CHECK_ERROR(hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 0, device_alloc.ptr(), width * sizeof(int) - 10, width * sizeof(int), height, hipMemcpyDeviceToDevice, nullptr), hipErrorInvalidPitchValue); } SECTION("Offset + width/height overflows") { HIP_CHECK_ERROR( hipMemcpy2DToArrayAsync(array_alloc.ptr(), 1, 0, device_alloc.ptr(), device_alloc.pitch(), width * sizeof(int), height, hipMemcpyDeviceToDevice, nullptr), hipErrorInvalidValue); HIP_CHECK_ERROR( hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 1, device_alloc.ptr(), device_alloc.pitch(), width * sizeof(int), height, hipMemcpyDeviceToDevice, nullptr), hipErrorInvalidValue); } SECTION("Width/height overflows") { HIP_CHECK_ERROR(hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 0, device_alloc.ptr(), device_alloc.pitch(), width * sizeof(int) + 1, height, hipMemcpyDeviceToDevice, nullptr), hipErrorInvalidValue); HIP_CHECK_ERROR(hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 0, device_alloc.ptr(), device_alloc.pitch(), width * sizeof(int), height + 1, hipMemcpyDeviceToDevice, nullptr), hipErrorInvalidValue); } SECTION("Memcpy kind is invalid") { HIP_CHECK_ERROR(hipMemcpy2DToArrayAsync(array_alloc.ptr(), 0, 0, device_alloc.ptr(), device_alloc.pitch(), width * sizeof(int), height, static_cast(-1), nullptr), hipErrorInvalidMemcpyDirection); } #endif } } static constexpr int kNumWidth = 10; static constexpr int kNumHeight = 10; TEST_CASE("Unit_hipMemcpy2DToArrayAsync_Capture") { CHECK_IMAGE_SUPPORT constexpr size_t kHostRowBytes = sizeof(float) * kNumWidth; auto host_data = std::make_unique(kNumWidth * kNumHeight); hipStream_t stream = nullptr; HIP_CHECK(hipStreamCreate(&stream)); hipArray_t device_array = nullptr; const hipChannelFormatDesc channel_desc = hipCreateChannelDesc(); HIP_CHECK(hipMallocArray(&device_array, &channel_desc, kNumWidth, kNumHeight, hipArrayDefault)); GENERATE_CAPTURE(); BEGIN_CAPTURE(stream); HIP_CHECK(hipMemcpy2DToArrayAsync(device_array, 0, 0, host_data.get(), kHostRowBytes, kHostRowBytes, kNumHeight, hipMemcpyHostToDevice, stream)); END_CAPTURE(stream); HIP_CHECK(hipStreamDestroy(stream)); HIP_CHECK(hipFreeArray(device_array)); }