diff --git a/hipamd/README.md b/hipamd/README.md index f9bdcba9a5..83d041786e 100644 --- a/hipamd/README.md +++ b/hipamd/README.md @@ -33,7 +33,7 @@ HIP releases are typically of two types. The tag naming convention is different - [HIP Porting Guide](docs/markdown/hip_porting_guide.md) - [HIP Porting Driver Guide](docs/markdown/hip_porting_driver_api.md) - [HIP Terminology](docs/markdown/hip_terms.md) (including Rosetta Stone of GPU computing terms across CUDA/HIP/HC/AMP/OpenL) -- [clang-hipify](clang-hipify/README.md) +- [hipify-clang](hipify-clang/README.md) - [Developer/CONTRIBUTING Info](CONTRIBUTING.md) - [Release Notes](RELEASE.md) diff --git a/hipamd/docs/markdown/hip_faq.md b/hipamd/docs/markdown/hip_faq.md index b09771ab71..f2fa3346cc 100644 --- a/hipamd/docs/markdown/hip_faq.md +++ b/hipamd/docs/markdown/hip_faq.md @@ -114,7 +114,7 @@ These offer pointer-based memory interfaces (as opposed to opaque buffers) and c - [hcsparse](https://bitbucket.org/multicoreware/hcsparse) - [hcrng](https://bitbucket.org/multicoreware/hcrng) -Additionally, some of the cublas routines are automatically converted to hipblas equivalents by the clang-hipify tool. These APIs use cublas or hcblas depending on the platform, and replace the need +Additionally, some of the cublas routines are automatically converted to hipblas equivalents by the hipify-clang tool. These APIs use cublas or hcblas depending on the platform, and replace the need to use conditional compilation. ### How does HIP compare with OpenCL? @@ -148,7 +148,7 @@ The tools also struggle with more complex CUDA applications, in particular those ### Does Hipify automatically convert all source code? Typically, Hipify can automatically convert almost all run-time code, and the coordinate indexing device code (i.e. threadIdx.x -> hipThreadIdx_x). Most device code needs no additional conversion, since HIP and CUDA have similar names for math and built-in functions. -The clang-hipify tool will automatically modify the kernel signature as needed (automating a step that used to be done manually) +The hipify-clang tool will automatically modify the kernel signature as needed (automating a step that used to be done manually) Additional porting may be required to deal with architecture feature queries or with CUDA capabilities that HIP doesn't support. In general, developers should always expect to perform some platform-specific tuning and optimization. diff --git a/hipamd/samples/2_Cookbook/0_MatrixTranspose/Readme.md b/hipamd/samples/2_Cookbook/0_MatrixTranspose/Readme.md index b1c0b261b9..5e9483b595 100644 --- a/hipamd/samples/2_Cookbook/0_MatrixTranspose/Readme.md +++ b/hipamd/samples/2_Cookbook/0_MatrixTranspose/Readme.md @@ -95,6 +95,6 @@ Use hipcc to build the application, which is using hcc on AMD and nvcc on nvidia - [HIP Runtime API (Doxygen)](http://gpuopen-professionalcompute-tools.github.io/HIP) - [HIP Porting Guide](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/docs/markdown/hip_porting_guide.md) - [HIP Terminology](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/docs/markdown/hip_terms.md) (including Rosetta Stone of GPU computing terms across CUDA/HIP/HC/AMP/OpenL) -- [clang-hipify](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/clang-hipify/README.md) +- [hipify-clang](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/hipify-clang/README.md) - [Developer/CONTRIBUTING Info](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/CONTRIBUTING.md) - [Release Notes](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/RELEASE.md) diff --git a/hipamd/samples/2_Cookbook/1_hipEvent/Readme.md b/hipamd/samples/2_Cookbook/1_hipEvent/Readme.md index bf5df9c763..e3ec8ad780 100644 --- a/hipamd/samples/2_Cookbook/1_hipEvent/Readme.md +++ b/hipamd/samples/2_Cookbook/1_hipEvent/Readme.md @@ -69,6 +69,6 @@ Use hipcc to build the application, which is using hcc on AMD and nvcc on nvidia - [HIP Runtime API (Doxygen)](http://gpuopen-professionalcompute-tools.github.io/HIP) - [HIP Porting Guide](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/docs/markdown/hip_porting_guide.md) - [HIP Terminology](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/docs/markdown/hip_terms.md) (including Rosetta Stone of GPU computing terms across CUDA/HIP/HC/AMP/OpenL) -- [clang-hipify](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/clang-hipify/README.md) +- [hipify-clang](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/hipify-clang/README.md) - [Developer/CONTRIBUTING Info](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/CONTRIBUTING.md) - [Release Notes](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/RELEASE.md) diff --git a/hipamd/samples/2_Cookbook/2_HIP_ATP_MARKER/Readme.md b/hipamd/samples/2_Cookbook/2_HIP_ATP_MARKER/Readme.md index 2bba31d349..de1a800572 100644 --- a/hipamd/samples/2_Cookbook/2_HIP_ATP_MARKER/Readme.md +++ b/hipamd/samples/2_Cookbook/2_HIP_ATP_MARKER/Readme.md @@ -46,6 +46,6 @@ Note this trace mode uses colors. "less -r" can handle raw control characters an - [HIP Runtime API (Doxygen)](http://gpuopen-professionalcompute-tools.github.io/HIP) - [HIP Porting Guide](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/docs/markdown/hip_porting_guide.md) - [HIP Terminology](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/docs/markdown/hip_terms.md) (including Rosetta Stone of GPU computing terms across CUDA/HIP/HC/AMP/OpenL) -- [clang-hipify](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/clang-hipify/README.md) +- [hipify-clang](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/hipify-clang/README.md) - [Developer/CONTRIBUTING Info](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/CONTRIBUTING.md) - [Release Notes](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP/RELEASE.md)