# HIP **Repository Path**: Ernest778/HIP ## Basic Information - **Project Name**: HIP - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## What is this repository for? ### **HIP is a C++ Runtime API and Kernel Language that allows developers to create portable applications for AMD and NVIDIA GPUs from single source code.** Key features include: * HIP is very thin and has little or no performance impact over coding directly in CUDA or hcc "HC" mode. * HIP allows coding in a single-source C++ programming language including features such as templates, C++11 lambdas, classes, namespaces, and more. * HIP allows developers to use the "best" development environment and tools on each target platform. * The [HIPIFY](https://github.com/ROCm-Developer-Tools/HIPIFY/blob/master/README.md) tools automatically convert source from CUDA to HIP. * Developers can specialize for the platform (CUDA or hcc) to tune for performance or handle tricky cases New projects can be developed directly in the portable HIP C++ language and can run on either NVIDIA or AMD platforms. Additionally, HIP provides porting tools which make it easy to port existing CUDA codes to the HIP layer, with no loss of performance as compared to the original CUDA application. HIP is not intended to be a drop-in replacement for CUDA, and developers should expect to do some manual coding and performance tuning work to complete the port. ## Repository branches: The HIP repository maintains several branches. The branches that are of importance are: * master branch: This is the stable branch. All stable releases are based on this branch. * developer-preview branch: This is the branch were the new features still under development are visible. While this maybe of interest to many, it should be noted that this branch and the features under development might not be stable. ## Release tagging: HIP releases are typically of two types. The tag naming convention is different for both types of releases to help differentiate them. * release_x.yy.zzzz: These are the stable releases based on the master branch. This type of release is typically made once a month. * preview_x.yy.zzzz: These denote pre-release code and are based on the developer-preview branch. This type of release is typically made once a week. ## More Info: - [Installation](INSTALL.md) - [HIP FAQ](docs/markdown/hip_faq.md) - [HIP Kernel Language](docs/markdown/hip_kernel_language.md) - [HIP Runtime API (Doxygen)](http://rocm-developer-tools.github.io/HIP) - [HIP Porting Guide](docs/markdown/hip_porting_guide.md) - [HIP Porting Driver Guide](docs/markdown/hip_porting_driver_api.md) - [HIP Programming Guide](docs/markdown/hip_programming_guide.md) - [HIP Profiling ](docs/markdown/hip_profiling.md) - [HIP Debugging](docs/markdown/hip_debugging.md) - [HIP Terminology](docs/markdown/hip_terms.md) (including Rosetta Stone of GPU computing terms across CUDA/HIP/HC/AMP/OpenCL) - [HIPIFY](https://github.com/ROCm-Developer-Tools/HIPIFY/blob/master/README.md) - Supported CUDA APIs: * [Runtime API](docs/markdown/CUDA_Runtime_API_functions_supported_by_HIP.md) * [Driver API](docs/markdown/CUDA_Driver_API_functions_supported_by_HIP.md) * [cuComplex API](docs/markdown/cuComplex_API_supported_by_HIP.md) * [cuBLAS](docs/markdown/CUBLAS_API_supported_by_HIP.md) * [cuRAND](docs/markdown/CURAND_API_supported_by_HIP.md) * [cuDNN](docs/markdown/CUDNN_API_supported_by_HIP.md) * [cuFFT](docs/markdown/CUFFT_API_supported_by_HIP.md) * [cuSPARSE](docs/markdown/CUSPARSE_API_supported_by_HIP.md) - [Developer/CONTRIBUTING Info](CONTRIBUTING.md) - [Release Notes](RELEASE.md) ## How do I get set up? See the [Installation](INSTALL.md) notes. ## Simple Example The HIP API includes functions such as hipMalloc, hipMemcpy, and hipFree. Programmers familiar with CUDA will also be able to quickly learn and start coding with the HIP API. Compute kernels are launched with the "hipLaunchKernel" macro call. Here is simple example showing a snippet of HIP API code: ```cpp hipMalloc(&A_d, Nbytes)); hipMalloc(&C_d, Nbytes)); hipMemcpy(A_d, A_h, Nbytes, hipMemcpyHostToDevice); const unsigned blocks = 512; const unsigned threadsPerBlock = 256; hipLaunchKernel(vector_square, /* compute kernel*/ dim3(blocks), dim3(threadsPerBlock), 0/*dynamic shared*/, 0/*stream*/, /* launch config*/ C_d, A_d, N); /* arguments to the compute kernel */ hipMemcpy(C_h, C_d, Nbytes, hipMemcpyDeviceToHost); ``` The HIP kernel language defines builtins for determining grid and block coordinates, math functions, short vectors, atomics, and timer functions. It also specifies additional defines and keywords for function types, address spaces, and optimization controls. (See the [HIP Kernel Language](docs/markdown/hip_kernel_language.md) for a full description). Here's an example of defining a simple 'vector_square' kernel. ```cpp template __global__ void vector_square(T *C_d, const T *A_d, size_t N) { size_t offset = (hipBlockIdx_x * hipBlockDim_x + hipThreadIdx_x); size_t stride = hipBlockDim_x * hipGridDim_x; for (size_t i=offset; i