/* 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 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 // hip header file #include "hip/hip_runtime.h" #include "hip/hip_profile.h" #define WIDTH 1024 #define NUM (WIDTH*WIDTH) #define THREADS_PER_BLOCK_X 4 #define THREADS_PER_BLOCK_Y 4 #define THREADS_PER_BLOCK_Z 1 #define ITERATIONS 10 // Device (Kernel) function, it must be void // hipLaunchParm provides the execution configuration __global__ void matrixTranspose(hipLaunchParm lp, float *out, float *in, const int width) { int x = hipBlockDim_x * hipBlockIdx_x + hipThreadIdx_x; int y = hipBlockDim_y * hipBlockIdx_y + hipThreadIdx_y; out[y * width + x] = in[x * width + y]; } // CPU implementation of matrix transpose void matrixTransposeCPUReference( float * output, float * input, const unsigned int width) { for(unsigned int j=0; j < width; j++) { for(unsigned int i=0; i < width; i++) { output[i*width + j] = input[j*width + i]; } } } // Use a separate function to demonstrate how to use function name as part of scoped marker: void runGPU(float *Matrix, float *TransposeMatrix, float* gpuMatrix, float* gpuTransposeMatrix) { // __func__ is a standard C++ macro which expands to the name of the function, in this case "runGPU" HIP_SCOPED_MARKER(__func__, "MyGroup"); for (int i=0; i eps ) { errors++; } } if (errors!=0) { printf("FAILED: %d errors\n",errors); } else { printf ("PASSED!\n"); } //free the resources on device side hipFree(gpuMatrix); hipFree(gpuTransposeMatrix); //free the resources on host side free(Matrix); free(TransposeMatrix); free(cpuTransposeMatrix); HIP_END_MARKER(); return errors; }