/* 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 "hip/driver_types.h" #include #include #include #include #include /** * @brief Test hipMalloc3D, hipMallocPitch and hipMemAllocPitch with multiple input values. * Checks that the memory has been allocated with the specified pitch and extent sizes. */ struct MemoryInfo { size_t freeMem; size_t totalMem; }; inline static MemoryInfo createMemoryInfo() { MemoryInfo memoryInfo{}; HIP_CHECK(hipMemGetInfo(&memoryInfo.freeMem, &memoryInfo.totalMem)); return memoryInfo; } static void validateMemory(void* devPtr, hipExtent extent, size_t pitch, MemoryInfo memBeforeAllocation) { INFO("Width: " << extent.width << " Height: " << extent.height << " Depth: " << extent.depth); MemoryInfo memAfterAllocation{createMemoryInfo()}; const size_t theoreticalAllocatedMemory{pitch * extent.height * extent.depth}; const size_t allocatedMemory = memBeforeAllocation.freeMem - memAfterAllocation.freeMem; if (theoreticalAllocatedMemory == 0) { REQUIRE(theoreticalAllocatedMemory == allocatedMemory); return; /* If there was no memory allocated then we don't need to do further checks. */ } else { REQUIRE(theoreticalAllocatedMemory <= allocatedMemory); } std::unique_ptr hostPtr{new char[theoreticalAllocatedMemory]}; std::memset(hostPtr.get(), 2, theoreticalAllocatedMemory); hipPitchedPtr devPitchedPtr{devPtr, pitch, extent.width, extent.height}; hipPitchedPtr hostPitchedPtr{hostPtr.get(), pitch, extent.width, extent.height}; HIP_CHECK(hipMemset3D(devPitchedPtr, 1, extent)); hipMemcpy3DParms params{}; params.srcPtr = devPitchedPtr; params.kind = hipMemcpyKind::hipMemcpyDeviceToHost; params.dstPtr = hostPitchedPtr; params.extent = extent; HIP_CHECK(hipMemcpy3D(¶ms)) bool mismatch = false; for (size_t width = 0; width < extent.width; ++width) { for (size_t height = 0; height < extent.height; ++height) { for (size_t depth = 0; depth < extent.depth; ++depth) { char* reinterpretedPtr = reinterpret_cast(hostPtr.get()); size_t index = (pitch * extent.height * depth) + (pitch * height) + width; if (*(reinterpretedPtr + index) != 1) { mismatch = true; } } } } REQUIRE(!mismatch); } class ExtentGenerator { public: static constexpr size_t totalRandomValues{20}; static constexpr size_t seed{1337}; std::uniform_int_distribution width_distribution{1, 1024}; std::uniform_int_distribution height_distribution{1, 100}; std::uniform_int_distribution depth_distribution{1, 100}; std::vector extents2D{}; std::vector extents3D{}; static ExtentGenerator& getInstance() { static ExtentGenerator instance; return instance; } private: ExtentGenerator() { std::mt19937 randomGenerator{seed}; extents3D = std::vector{hipExtent{0, 0, 0}, hipExtent{1, 0, 0}, hipExtent{0, 1, 0}, hipExtent{0, 0, 1}}; for (size_t i = 0; i < totalRandomValues; ++i) { extents3D.push_back(hipExtent{width_distribution(randomGenerator), height_distribution(randomGenerator), depth_distribution(randomGenerator)}); } extents2D = std::vector{hipExtent{0, 0, 1}, hipExtent{1, 0, 1}, hipExtent{0, 1, 1}}; for (size_t i = 0; i < totalRandomValues; ++i) { extents2D.push_back( hipExtent{width_distribution(randomGenerator), height_distribution(randomGenerator), 1}); } } }; enum class AllocationApi { hipMalloc3D, hipMallocPitch, hipMemAllocPitch }; hipExtent generateExtent(AllocationApi api) { hipExtent extent; if (api == AllocationApi::hipMalloc3D) { auto& extents3D = ExtentGenerator::getInstance().extents3D; extent = GENERATE_REF(from_range(extents3D.begin(), extents3D.end())); } else { auto& extents2D = ExtentGenerator::getInstance().extents2D; extent = GENERATE_REF(from_range(extents2D.begin(), extents2D.end())); } return extent; } TEST_CASE("Unit_hipMalloc3D_ValidatePitch") { hipPitchedPtr hipPitchedPtr; hipExtent validExtent{generateExtent(AllocationApi::hipMalloc3D)}; MemoryInfo memBeforeAllocation{createMemoryInfo()}; HIP_CHECK(hipMalloc3D(&hipPitchedPtr, validExtent)); validateMemory(hipPitchedPtr.ptr, validExtent, hipPitchedPtr.pitch, memBeforeAllocation); HIP_CHECK(hipFree(hipPitchedPtr.ptr)); } TEST_CASE("Unit_hipMemAllocPitch_ValidatePitch") { size_t pitch; hipDeviceptr_t ptr; hipExtent validExtent{generateExtent(AllocationApi::hipMemAllocPitch)}; MemoryInfo memBeforeAllocation{createMemoryInfo()}; unsigned int elementSizeBytes = GENERATE(4, 8, 16); if (validExtent.width == 0 || validExtent.height == 0) { return; } HIP_CHECK( hipMemAllocPitch(&ptr, &pitch, validExtent.width, validExtent.height, elementSizeBytes)); validateMemory(reinterpret_cast(ptr), validExtent, pitch, memBeforeAllocation); HIP_CHECK(hipFree(reinterpret_cast(ptr))); } TEST_CASE("Unit_hipMallocPitch_ValidatePitch") { #if HT_AMD HipTest::HIP_SKIP_TEST("TODO-FIX-EXTENT-GENERATOR"); return; #endif size_t pitch; void* ptr; hipExtent validExtent{generateExtent(AllocationApi::hipMemAllocPitch)}; MemoryInfo memBeforeAllocation{createMemoryInfo()}; HIP_CHECK(hipMallocPitch(&ptr, &pitch, validExtent.width, validExtent.height)); validateMemory(ptr, validExtent, pitch, memBeforeAllocation); HIP_CHECK(hipFree(ptr)); } TEST_CASE("Unit_hipMalloc3D_Negative") { SECTION("Invalid ptr") { hipExtent validExtent{1, 1, 1}; HIP_CHECK_ERROR(hipMalloc3D(nullptr, validExtent), hipErrorInvalidValue); } hipPitchedPtr ptr; constexpr size_t maxSizeT = std::numeric_limits::max(); #if HT_NVIDIA //TODO-MATCH-ERRORCODE SECTION("Max size_t width") { hipExtent validExtent{maxSizeT, 1, 1}; HIP_CHECK_ERROR(hipMalloc3D(&ptr, validExtent), hipErrorInvalidValue); } #endif SECTION("Max size_t height") { hipExtent validExtent{1, maxSizeT, 1}; HIP_CHECK_ERROR(hipMalloc3D(&ptr, validExtent), hipErrorOutOfMemory); } SECTION("Max size_t depth") { hipExtent validExtent{1, 1, maxSizeT}; HIP_CHECK_ERROR(hipMalloc3D(&ptr, validExtent), hipErrorOutOfMemory); } #if HT_NVIDIA //TODO-MATCH-ERRORCODE SECTION("Max size_t all dimensions") { hipExtent validExtent{maxSizeT, maxSizeT, maxSizeT}; HIP_CHECK_ERROR(hipMalloc3D(&ptr, validExtent), hipErrorInvalidValue); } #endif } TEST_CASE("Unit_hipMallocPitch_Negative") { size_t pitch; void* ptr; constexpr size_t maxSizeT = std::numeric_limits::max(); SECTION("Invalid ptr") { HIP_CHECK_ERROR(hipMallocPitch(nullptr, &pitch, 1, 1), hipErrorInvalidValue); } SECTION("Invalid pitch") { HIP_CHECK_ERROR(hipMallocPitch(&ptr, nullptr, 1, 1), hipErrorInvalidValue); } #if HT_NVIDIA //TODO-MATCH-ERRORCODE SECTION("Max size_t width") { HIP_CHECK_ERROR(hipMallocPitch(&ptr, &pitch, maxSizeT, 1), hipErrorInvalidValue); } #endif SECTION("Max size_t height") { HIP_CHECK_ERROR(hipMallocPitch(&ptr, &pitch, 1, maxSizeT), hipErrorOutOfMemory); } } TEST_CASE("Unit_hipMemAllocPitch_Negative") { size_t pitch; hipDeviceptr_t ptr{}; unsigned int validElementSizeBytes{4}; constexpr size_t maxSizeT = std::numeric_limits::max(); #if HT_NVIDIA /* Device synchronize is used here to initialize the device. * Nvidia does not implicitly do it for this Api. And hipInit(0) does not work either. */ HIP_CHECK(hipDeviceSynchronize()); SECTION("Invalid elementSizeBytes") { unsigned int invalidElementSizeBytes = GENERATE(0, 7, 12, 17); HIP_CHECK_ERROR(hipMemAllocPitch(&ptr, &pitch, 1, 1, invalidElementSizeBytes), hipErrorInvalidValue); } SECTION("Zero width") { HIP_CHECK_ERROR(hipMemAllocPitch(&ptr, &pitch, 0, 1, validElementSizeBytes), hipErrorInvalidValue); } SECTION("Zero height") { HIP_CHECK_ERROR(hipMemAllocPitch(&ptr, &pitch, 1, 0, validElementSizeBytes), hipErrorInvalidValue); } #endif SECTION("Invalid dptr") { HIP_CHECK_ERROR(hipMemAllocPitch(nullptr, &pitch, 1, 1, validElementSizeBytes), hipErrorInvalidValue); } SECTION("Invalid pitch") { HIP_CHECK_ERROR(hipMemAllocPitch(&ptr, nullptr, 1, 1, validElementSizeBytes), hipErrorInvalidValue); } #if HT_NVIDIA //TODO-MATCH-ERRORCODE SECTION("Max size_t width") { HIP_CHECK_ERROR(hipMemAllocPitch(&ptr, &pitch, maxSizeT, 1, validElementSizeBytes), hipErrorInvalidValue); } #endif SECTION("Max size_t height") { HIP_CHECK_ERROR(hipMemAllocPitch(&ptr, &pitch, 1, maxSizeT, validElementSizeBytes), hipErrorOutOfMemory); } } /* Test Scenarios of hipMallocPitch API 1. Basic Functionality Scenario 2. Allocate memory using hipMallocPitch API, Launch Kernel validate result. 3. Allocate Memory in small chunks and large chunks and check for possible memory leaks 4. Allocate Memory using hipMallocPitch API, Memcpy2D on the allocated variables. 5. Multithreaded scenario */ static constexpr auto SMALLCHUNK_NUMW{4}; static constexpr auto SMALLCHUNK_NUMH{4}; static constexpr auto LARGECHUNK_NUMW{1025}; static constexpr auto LARGECHUNK_NUMH{1000}; static constexpr auto NUM_W{10}; static constexpr auto NUM_H{10}; static constexpr auto COLUMNS{8}; static constexpr auto ROWS{8}; static constexpr auto CHUNK_LOOP{100}; template __global__ void copy_var(T* A, T* B, size_t ROWS, size_t pitch_A) { for (uint64_t i = 0; i< ROWS*pitch_A; i= i+pitch_A) { A[i] = B[i]; } } template static bool validateResult(T* A, T* B, size_t pitch_A) { bool testResult = true; for (uint64_t i=0; i < pitch_A*ROWS; i=i+pitch_A) { if (A[i] != B[i]) { testResult = false; break; } } return testResult; } /* * This API verifies memory allocations for small and * bigger chunks of data. * Two scenarios are verified in this API * 1. SmallChunk: Allocates SMALLCHUNK_NUMW in a loop and * releases the memory and verifies the meminfo. * 2. LargeChunk: Allocates LARGECHUNK_NUMW in a loop and * releases the memory and verifies the meminfo * * In both cases, the memory info before allocation and * after releasing the memory should be the same * */ template static void MemoryAllocDiffSizes(int gpu) { HIP_CHECK(hipSetDevice(gpu)); std::vector array_size; array_size.push_back(SMALLCHUNK_NUMH); array_size.push_back(LARGECHUNK_NUMH); for (auto &sizes : array_size) { T* A_d[CHUNK_LOOP]; size_t pitch_A; size_t width; if (sizes == SMALLCHUNK_NUMH) { width = SMALLCHUNK_NUMW * sizeof(T); } else { width = LARGECHUNK_NUMW * sizeof(T); } size_t tot, avail, ptot, pavail; HIP_CHECK(hipMemGetInfo(&pavail, &ptot)); for (int i = 0; i < CHUNK_LOOP; i++) { HIP_CHECK(hipMallocPitch(reinterpret_cast(&A_d[i]), &pitch_A, width, sizes)); } for (int i = 0; i < CHUNK_LOOP; i++) { HIP_CHECK(hipFree(A_d[i])); } HIP_CHECK(hipMemGetInfo(&avail, &tot)); if (pavail != avail) { HIPASSERT(false); } } } /*Thread Function */ static void threadFunc(int gpu) { MemoryAllocDiffSizes(gpu); } /* * This testcase verifies the negative scenarios of hipMallocPitch API */ #if 0 //TODO: Review, fix and re-enable test TEST_CASE("Unit_hipMallocPitch_Negative") { float* A_d; size_t pitch_A; size_t width{NUM_W * sizeof(float)}; #if HT_NVIDIA SECTION("NullPtr to Pitched Ptr") { REQUIRE(hipMallocPitch(nullptr, &pitch_A, width, NUM_H) != hipSuccess); } SECTION("nullptr to pitch") { REQUIRE(hipMallocPitch(reinterpret_cast(&A_d), nullptr, width, NUM_H) != hipSuccess); } #endif SECTION("Width 0 in hipMallocPitch") { REQUIRE(hipMallocPitch(reinterpret_cast(&A_d), &pitch_A, 0, NUM_H) == hipSuccess); } SECTION("Height 0 in hipMallocPitch") { REQUIRE(hipMallocPitch(reinterpret_cast(&A_d), &pitch_A, width, 0) == hipSuccess); } SECTION("Max int values") { REQUIRE(hipMallocPitch(reinterpret_cast(&A_d), &pitch_A, std::numeric_limits::max(), std::numeric_limits::max()) != hipSuccess); } } #endif /* * This testcase verifies the basic scenario of * hipMallocPitch API for different datatypes * */ TEMPLATE_TEST_CASE("Unit_hipMallocPitch_Basic", "[hipMallocPitch]", int, unsigned int, float) { TestType* A_d; size_t pitch_A; size_t width{NUM_W * sizeof(TestType)}; REQUIRE(hipMallocPitch(reinterpret_cast(&A_d), &pitch_A, width, NUM_H) == hipSuccess); HIP_CHECK(hipFree(A_d)); } /* * This testcase verifies hipMallocPitch API for small * and big chunks of data. */ TEMPLATE_TEST_CASE("Unit_hipMallocPitch_SmallandBigChunks", "[hipMallocPitch]", int, unsigned int, float) { MemoryAllocDiffSizes(0); } /* * This testcase verifies the memory allocated by hipMallocPitch API * by performing Memcpy2D on the allocated memory. */ TEMPLATE_TEST_CASE("Unit_hipMallocPitch_Memcpy2D", "" , int, float, double) { HIP_CHECK(hipSetDevice(0)); TestType *A_h{nullptr}, *B_h{nullptr}, *C_h{nullptr}, *A_d{nullptr}, *B_d{nullptr}; size_t pitch_A, pitch_B; size_t width{NUM_W * sizeof(TestType)}; // Allocating memory HipTest::initArrays(nullptr, nullptr, nullptr, &A_h, &B_h, &C_h, NUM_W*NUM_H, false); HIP_CHECK(hipMallocPitch(reinterpret_cast(&A_d), &pitch_A, width, NUM_H)); HIP_CHECK(hipMallocPitch(reinterpret_cast(&B_d), &pitch_B, width, NUM_H)); // Initialize the data HipTest::setDefaultData(NUM_W*NUM_H, A_h, B_h, C_h); // Host to Device HIP_CHECK(hipMemcpy2D(A_d, pitch_A, A_h, COLUMNS*sizeof(TestType), COLUMNS*sizeof(TestType), ROWS, hipMemcpyHostToDevice)); // Performs D2D on same GPU device HIP_CHECK(hipMemcpy2D(B_d, pitch_B, A_d, pitch_A, COLUMNS*sizeof(TestType), ROWS, hipMemcpyDeviceToDevice)); // hipMemcpy2D Device to Host HIP_CHECK(hipMemcpy2D(B_h, COLUMNS*sizeof(TestType), B_d, pitch_B, COLUMNS*sizeof(TestType), ROWS, hipMemcpyDeviceToHost)); // Validating the result REQUIRE(HipTest::checkArray(A_h, B_h, COLUMNS, ROWS) == true); // DeAllocating the memory HIP_CHECK(hipFree(A_d)); HIP_CHECK(hipFree(B_d)); HipTest::freeArrays(nullptr, nullptr, nullptr, A_h, B_h, C_h, false); } /* This testcase verifies the hipMallocPitch API in multithreaded scenario by launching threads in parallel on multiple GPUs and verifies the hipMallocPitch API with small and big chunks data */ TEST_CASE("Unit_hipMallocPitch_MultiThread", "") { std::vector threadlist; int devCnt = 0; devCnt = HipTest::getDeviceCount(); size_t tot, avail, ptot, pavail; HIP_CHECK(hipMemGetInfo(&pavail, &ptot)); for (int i = 0; i < devCnt; i++) { threadlist.push_back(std::thread(threadFunc, i)); } for (auto &t : threadlist) { t.join(); } HIP_CHECK(hipMemGetInfo(&avail, &tot)); if (pavail != avail) { WARN("Memory leak of hipMallocPitch API in multithreaded scenario"); REQUIRE(false); } } /* * This testcase verifies hipMallocPitch API by * 1. Allocating Memory using hipMallocPitch API * 2. Launching the kernel and copying the data from the allocated kernel * variable to another kernel variable. * 3. Validating the result */ TEMPLATE_TEST_CASE("Unit_hipMallocPitch_KernelLaunch", "" , int, float, double) { HIP_CHECK(hipSetDevice(0)); TestType *A_h{nullptr}, *B_h{nullptr}, *C_h{nullptr}, *A_d{nullptr}, *B_d{nullptr}; size_t pitch_A, pitch_B; size_t width{NUM_W * sizeof(TestType)}; // Allocating memory HipTest::initArrays(nullptr, nullptr, nullptr, &A_h, &B_h, &C_h, NUM_W*NUM_H, false); HIP_CHECK(hipMallocPitch(reinterpret_cast(&A_d), &pitch_A, width, NUM_H)); HIP_CHECK(hipMallocPitch(reinterpret_cast(&B_d), &pitch_B, width, NUM_H)); // Host to Device HIP_CHECK(hipMemcpy2D(A_d, pitch_A, A_h, COLUMNS*sizeof(TestType), COLUMNS*sizeof(TestType), ROWS, hipMemcpyHostToDevice)); hipLaunchKernelGGL(copy_var, dim3(1), dim3(1), 0, 0, static_cast(A_d), static_cast(B_d), ROWS, pitch_A); // hipMemcpy2D Device to Host HIP_CHECK(hipMemcpy2D(B_h, COLUMNS*sizeof(TestType), B_d, pitch_B, COLUMNS*sizeof(TestType), ROWS, hipMemcpyDeviceToHost)); // Validating the result validateResult(A_h, B_h, pitch_A); // DeAllocating the memory HIP_CHECK(hipFree(A_d)); HIP_CHECK(hipFree(B_d)); HipTest::freeArrays(nullptr, nullptr, nullptr, A_h, B_h, C_h, false); }