diff --git a/projects/clr/CONTRIBUTING.md b/projects/clr/CONTRIBUTING.md index 1036e0729b..8bbec8ba67 100644 --- a/projects/clr/CONTRIBUTING.md +++ b/projects/clr/CONTRIBUTING.md @@ -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 Compute Language Runtime 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/projects/clr/README.md b/projects/clr/README.md index 980db6fb3d..76b8d00885 100644 --- a/projects/clr/README.md +++ b/projects/clr/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