/* Copyright (c) 2020 - 2021 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 WARRANNTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNNESS 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 INN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR INN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** Testcase Scenarios : (TestCase 1):: 1) Test hipHostMalloc() api with ptr as nullptr and check for return value. 2) Test hipHostMalloc() api with size as max(size_t) and check for OOM error. 3) Test hipHostMalloc() api with flags as max(unsigned int) and validate return value. 4) Pass size as zero for hipHostMalloc() api and check ptr is reset with with return value success. (TestCase 2):: 5) Validate memory usage of hipHostMalloc() api when HIP_VISIBLE_DEVICES set to single device. 6) Validate memory usage of hipHostMalloc() api when HIP_VISIBLE_DEVICES set to list of multiple devices. */ /* Tests 2 and 3 are rocclr specific tests and not supported on nvidia */ /* HIT_START * BUILD_CMD: %t %hc %S/%s %S/../../test_common.cpp -I%S/../../ -o %T/%t -ldl -std=c++11 * TEST: %t --tests 1 * TEST: %t --tests 2 * TEST: %t --tests 3 * HIT_END */ #ifdef __linux__ #include #include #include #include #endif #include #include #include #include "hipHostMallocTests.h" /** * Defines */ #define LIB_ROCMSMI "librocm_smi64.so" #define NUM_BYTES 1000 #define ALLOC_SIZE (1*1024*1024) /** * Global variables */ rsmi_status_t (*rsmi_dev_memory_usage_get_fp)(uint32_t, rsmi_memory_type_t, uint64_t *); rsmi_status_t (*rsmi_init_fp)(uint64_t); rsmi_status_t (*rsmi_shut_down_fp)(); void *rocm_smi_h; /** * Fetches Gpu device count */ void getDeviceCount(int *pdevCnt) { #ifdef __linux__ int fd[2], val = 0; pid_t childpid; // create pipe descriptors pipe(fd); // disable visible_devices env from shell unsetenv("ROCR_VISIBLE_DEVICES"); unsetenv("HIP_VISIBLE_DEVICES"); childpid = fork(); if (childpid > 0) { // Parent close(fd[1]); // parent will wait to read the device cnt read(fd[0], &val, sizeof(val)); // close the read-descriptor close(fd[0]); // wait for child exit wait(NULL); *pdevCnt = val; } else if (!childpid) { // Child int devCnt = 1; // writing only, no need for read-descriptor close(fd[0]); HIPCHECK(hipGetDeviceCount(&devCnt)); // send the value on the write-descriptor: write(fd[1], &devCnt, sizeof(devCnt)); // close the write descriptor: close(fd[1]); exit(0); } else { // failure *pdevCnt = 1; return; } #else HIPCHECK(hipGetDeviceCount(pdevCnt)); #endif } #if defined(__linux__) /** * Initializes rocm smi library handles */ bool rocm_smi_init() { // Open ROCm SMI Library if (!(rocm_smi_h = dlopen(LIB_ROCMSMI, RTLD_LAZY))) { printf("Error opening rocm smi library!\n"); return false; } void* fnsym = dlsym(rocm_smi_h, "rsmi_dev_memory_usage_get"); if (!fnsym) { printf("Error getting rsmi_dev_memory_usage_get() function\n"); dlclose(rocm_smi_h); return false; } rsmi_dev_memory_usage_get_fp = reinterpret_cast(fnsym); fnsym = dlsym(rocm_smi_h, "rsmi_init"); if (!fnsym) { printf("Error getting rsmi_init() function\n"); dlclose(rocm_smi_h); return false; } rsmi_init_fp = reinterpret_cast(fnsym); fnsym = dlsym(rocm_smi_h, "rsmi_shut_down"); if (!fnsym) { printf("Error getting rsmi_shut_down() function\n"); dlclose(rocm_smi_h); return false; } rsmi_shut_down_fp = reinterpret_cast(fnsym); uint64_t init_flags = 0; rsmi_status_t retsmi_init; retsmi_init = rsmi_init_fp(init_flags); if (RSMI_STATUS_SUCCESS != retsmi_init) { printf("Error when initializing rocm_smi\n"); dlclose(rocm_smi_h); return false; } return true; } /** * Exits rocm smi library */ void rocm_smi_exit() { rsmi_shut_down_fp(); dlclose(rocm_smi_h); } /** * Validates page table memory allocations * by setting visible devices selected. */ bool validatePageTableAllocations(const char *devList, int devCnt) { int fd[2]; bool testResult = false; pid_t pid; int numdev = 0; getDeviceCount(&numdev); if (pipe(fd) < 0) { printf("Pipe system call failed\n"); return false; } pid = fork(); if (!pid) { // Child process rsmi_status_t ret; std::vector prev, current; uint64_t used = 0; int tmpdev = 0, changeCnt = 0, indx = 0; char *ptr = NULL; bool testPassed = true; // Disable visible_devices env from shell unsetenv("ROCR_VISIBLE_DEVICES"); unsetenv("HIP_VISIBLE_DEVICES"); setenv("HIP_VISIBLE_DEVICES", devList, 1); // First Call to initialize hip api hipGetDeviceCount(&tmpdev); // Get memory snapshot before hostmalloc for (indx = 0; indx < numdev; indx++) { ret = rsmi_dev_memory_usage_get_fp(indx, RSMI_MEM_TYPE_VRAM, &used); if (RSMI_STATUS_SUCCESS != ret) { printf("Error while running rsmi_dev_memory_usage_get func\n"); dlclose(rocm_smi_h); rsmi_shut_down_fp(); return false; } prev.push_back(used); } HIPCHECK(hipHostMalloc(&ptr, ALLOC_SIZE)); // Get memory snapshot after hostmalloc for (indx = 0; indx < numdev; indx++) { ret = rsmi_dev_memory_usage_get_fp(indx, RSMI_MEM_TYPE_VRAM, &used); if (RSMI_STATUS_SUCCESS != ret) { printf("Error while running rsmi_dev_memory_usage_get func\n"); dlclose(rocm_smi_h); rsmi_shut_down_fp(); hipHostFree(ptr); return false; } current.push_back(used); } for (indx = 0; indx < numdev; indx++) { if (current[indx] - prev[indx]) changeCnt++; } // Check if memory allocation happened only for visible devices if (changeCnt == devCnt) { testPassed = true; } else { testPassed = false; } hipHostFree(ptr); // writing only, no need for read-descriptor close(fd[0]); // send the value on the write-descriptor: write(fd[1], &testPassed, sizeof(testPassed)); // close the write descriptor: close(fd[1]); exit(0); } else if (pid > 0) { // parent close(fd[1]); read(fd[0], &testResult, sizeof(testResult)); close(fd[0]); wait(NULL); } else { printf("fork() failed\n"); testResult = false; } return testResult; } /** * Validate memory usage selecting single visible device */ bool validateHostMallocSingleVisibleDevice() { int devCnt; std::string str; bool TestPassed = true; if (!rocm_smi_init()) { printf("%s Testcase skipped as rocm smi not initialized/present\n", __func__); return true; } getDeviceCount(&devCnt); // Select single visible device and validate memory usage for (int i = 0; i < devCnt; i++) { str = std::to_string(i); TestPassed = validatePageTableAllocations(str.c_str(), 1); if (!TestPassed) break; } rocm_smi_exit(); return TestPassed; } /** * Validate memory usage selecting multiple visible devices */ bool validateHostMallocMultipleVisibleDevices() { int devCnt = 0, vdCnt = 0; std::string str; bool TestPassed = true; if (!rocm_smi_init()) { printf("%s Testcase skipped as rocm smi not initialized/present\n", __func__); return true; } getDeviceCount(&devCnt); // Select multiple visible devices and validate memory usage for (int i = 0; i < devCnt; i++) { if (i == 0) str += std::to_string(i); else str += "," + std::to_string(i); vdCnt++; TestPassed = validatePageTableAllocations(str.c_str(), vdCnt); if (!TestPassed) break; } rocm_smi_exit(); return TestPassed; } #endif int main(int argc, char *argv[]) { HipTest::parseStandardArguments(argc, argv, true); bool TestPassed = true; hipError_t ret; size_t allocSize = NUM_BYTES; char *ptr; if (p_tests == 1) { // Pass ptr as nullptr. if ((ret = hipHostMalloc(static_cast(nullptr), allocSize)) != hipErrorInvalidValue) { printf("ArgValidation : Inappropritate error value returned for " "ptr as nullptr. Error: '%s'(%d)\n", hipGetErrorString(ret), ret); TestPassed &= false; } // Size as max(size_t). if ((ret = hipHostMalloc(&ptr, std::numeric_limits::max())) != hipErrorOutOfMemory) { printf("ArgValidation : Inappropritate error value returned for " "max(size_t). Error: '%s'(%d)\n", hipGetErrorString(ret), ret); TestPassed &= false; } // Flags as max(uint). if ((ret = hipHostMalloc(&ptr, allocSize, std::numeric_limits::max())) != hipErrorInvalidValue) { printf("ArgValidation : Inappropritate error value returned for " "max(uint). Error: '%s'(%d)\n", hipGetErrorString(ret), ret); TestPassed &= false; } // Pass size as zero and check ptr reset. HIPCHECK(hipHostMalloc(&ptr, 0)); if (ptr) { TestPassed &= false; printf("ArgValidation : ptr is not reset when size(0)\n"); } } else if (p_tests == 2) { // Test page table allocation when HIP_VISIBLE_DEVICES set to // single device #if defined(__linux__) TestPassed = validateHostMallocSingleVisibleDevice(); #else printf("Test validateHostMallocSingleVisibleDevice skipped on" "non-linux\n"); #endif } else if (p_tests == 3) { // Test page table allocation when HIP_VISIBLE_DEVICES set to // multiple devices #if defined(__linux__) TestPassed = validateHostMallocMultipleVisibleDevices(); #else printf("Test validateHostMallocMultipleVisibleDevices skipped on" "non-linux\n"); #endif } else { printf("Didnt receive any valid option. Try options 1 to 3\n"); TestPassed = false; } if (TestPassed) { passed(); } else { failed("hipHostMallocTests validation Failed!"); } }