diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1036e0729..46e425e4b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,7 @@ # Contributing to HIP/CLR # We welcome contributions to the HIP project. -CLR is a part of HIP runtime for the AMD platform.Please follow these details to help ensure your contributions will be successfully accepted. +CLR (Compute Language Runtime) is a part of HIP runtime for the AMD platform.Please follow these details to help ensure your contributions will be successfully accepted. ## Issue Discussion ## @@ -23,7 +23,7 @@ Please use the [GitHub Issue](https://github.com/ROCm/clr/issues) tab to notify ## Acceptance Criteria ## -clr is Common Language Runtime contains C++ codes for the implementation of HIP runtime APIs on the AMD platform. +clr contains C++ codes for the implementation of HIP runtime APIs on the AMD platform. Bug fixes and performance are both important goals in clr. Because of this, when a pull request is created, the owner of the repository will review, and put it in automated testing to make sure, * The change will build on various OS platforms (Ubuntu, RHEL, etc.) * The build package will install and run the code on different GPU architectures (MI-series, Radeon series cards, etc.), @@ -38,7 +38,7 @@ clr contains three parts of codes, - `opencl` - contains implementation of OpenCL on the AMD platform. -- `rocclr` - contains common runtime used in HIP and OpenCL, which includes +- `rocclr` - contains compute runtime used in HIP and OpenCL, which includes - `include`, header files, - `device`, implementation of GPU device related interfaces to the backend support, - `cimpiler`, implementation of interfaces with compiler, diff --git a/README.md b/README.md index 980db6fb3..76b8d0088 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # AMD CLR - Compute Language Runtimes -AMD CLR (Common Language Runtime) contains source codes for AMD's compute languages runtimes: `HIP` and `OpenCL™`. +AMD CLR (Compute Language Runtime) contains source codes for AMD's compute languages runtimes: `HIP` and `OpenCL™`. ## Project Organisation - `hipamd` - contains implementation of `HIP` language on AMD platform. It is hosted at [ROCm/clr/hipamd](https://github.com/ROCm/clr/tree/develop/hipamd) - `opencl` - contains implementation of [OpenCL™](https://www.khronos.org/opencl/) on AMD platform. Now it is hosted at [ROCm/clr/opencl](https://github.com/ROCm/clr/tree/develop/opencl) -- `rocclr` - contains common runtime used in `HIP` and `OpenCL™`. This is hosted at [ROCm/clr/rocclr](https://github.com/ROCm/clr/tree/develop/rocclr) +- `rocclr` - contains compute runtime used in `HIP` and `OpenCL™`. This is hosted at [ROCm/clr/rocclr](https://github.com/ROCm/clr/tree/develop/rocclr) ## How to build/install