/* Copyright (c) 2015-2016 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, INNCLUDING 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 ANNY 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. */ /* HIT_START * BUILD: %t %s NVCC_OPTIONS -std=c++11 * RUN: %t EXCLUDE_HIP_PLATFORM nvcc * HIT_END */ #include "test_common.h" #include #include // Tolerance for error const double tolerance = 1e-6; const bool verbose = false; #define LEN 64 #define ALL_FUN \ OP(add) \ OP(sub) \ OP(mul) \ OP(div) #define OP(x) CK_##x, enum CalcKind { ALL_FUN }; #undef OP #define OP(x) case CK_##x: return #x; std::string getName(enum CalcKind CK) { switch(CK){ ALL_FUN } } #undef OP // Calculates function. // If the function has one argument, B is ignored. // If the function returns real number, converts it to a complex number. #define ONE_ARG(func) \ case CK_##func: \ return std::complex(std::func(A)); template __device__ __host__ std::complex calc(std::complex A, std::complex B, enum CalcKind CK) { switch(CK) { case CK_add: return A + B; case CK_sub: return A - B; case CK_mul: return A * B; case CK_div: return A / B; } } // Allocate memory in kernel and save the address to pA and pB. // Copy value from A, B to allocated memory. template __global__ void kernel_alloc(std::complex* A, std::complex* B, std::complex** pA, std::complex** pB) { typedef std::complex CFloatT; int tx = threadIdx.x + blockIdx.x * blockDim.x; if (tx == 0) { *pA = (CFloatT*)malloc(sizeof(CFloatT)*LEN); *pB = (CFloatT*)malloc(sizeof(CFloatT)*LEN); for (int i = 0; i < LEN; i++) { (*pA)[i] = A[i]; (*pB)[i] = B[i]; } } } // Do calculation using values saved in allocated memmory. pA, pB are buffers // containing the address of the device-side allocated array. template __global__ void kernel_free(std::complex** pA, std::complex** pB, std::complex* C, enum CalcKind CK) { typedef std::complex CFloatT; int tx = threadIdx.x + blockIdx.x * blockDim.x; C[tx] = calc((*pA)[tx], (*pB)[tx], CK); if (tx == 0) { free(*pA); free(*pB); } } template void test() { typedef std::complex ComplexT; ComplexT *A, *Ad, *B, *Bd, *C, *Cd, *D; A = new ComplexT[LEN]; B = new ComplexT[LEN]; C = new ComplexT[LEN]; D = new ComplexT[LEN]; hipMalloc((void**)&Ad, sizeof(ComplexT)*LEN); hipMalloc((void**)&Bd, sizeof(ComplexT)*LEN); hipMalloc((void**)&Cd, sizeof(ComplexT)*LEN); for (uint32_t i = 0; i < LEN; i++) { A[i] = ComplexT((i + 1) * 1.0f, (i + 2) * 1.0f); B[i] = A[i]; C[i] = A[i]; } hipMemcpy(Ad, A, sizeof(ComplexT)*LEN, hipMemcpyHostToDevice); hipMemcpy(Bd, B, sizeof(ComplexT)*LEN, hipMemcpyHostToDevice); // Run kernel for a calculation kind and verify by comparing with host // calculation result. Returns false if fails. auto test_fun = [&](enum CalcKind CK) { // kernel_alloc allocates memory on device side and initialize it. // kernel_free uses allocated memory from kernel_alloc and does the // calculation then free the memory. // pA and pB are buffers to pass the device-side allocated memory address // from kernel_alloc to kernel_free. ComplexT **pA, **pB; hipMalloc((ComplexT***)&pA, sizeof(ComplexT*)); hipMalloc((ComplexT***)&pB, sizeof(ComplexT*)); hipLaunchKernelGGL(kernel_alloc, dim3(1), dim3(LEN), 0, 0, Ad, Bd, pA, pB); hipDeviceSynchronize(); hipLaunchKernelGGL(kernel_free, dim3(1), dim3(LEN), 0, 0, pA, pB, Cd, CK); hipMemcpy(C, Cd, sizeof(ComplexT)*LEN, hipMemcpyDeviceToHost); hipFree(pA); hipFree(pB); for (int i = 0; i < LEN; i++) { ComplexT Expected = calc(A[i], B[i], CK); FloatT error = std::abs(C[i] - Expected); if (std::abs(Expected) > tolerance) error /= std::abs(Expected); bool pass = error < tolerance; if (verbose || !pass) { std::cout << "Function: " << getName(CK) << " Operands: " << A[i] << " " << B[i] << " Result: " << C[i] << " Expected: " << Expected << " Error: " << error << " Pass: " << pass << std::endl; } if (!pass) return false; } return true; }; #define OP(x) assert(test_fun(CK_##x)); ALL_FUN #undef OP hipFree(Ad); hipFree(Bd); hipFree(Cd); delete[] A; delete[] B; delete[] C; delete[] D; } int main() { test(); test(); passed(); return 0; }