SWDEV-497324 - Rename CLR as Compute Language Runtime

Change-Id: Ie2854eeac764fba770b296a63d76d547139d3cc0


[ROCm/clr commit: a27c627731]
This commit is contained in:
Julia Jiang
2024-11-08 15:19:22 -05:00
کامیت شده توسط Julia Jiang
والد bb2b3cdc89
کامیت 7cc3970a3f
2فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
+2 -2
مشاهده پرونده
@@ -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,
+2 -2
مشاهده پرونده
@@ -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