Fix some typos (#3509)

This commit is contained in:
Sam Wu
2024-08-02 16:44:03 -06:00
committed by GitHub
parent b6c72fa7d2
commit a51b11dd36
3 changed files with 10 additions and 11 deletions

View File

@@ -113,7 +113,7 @@ for installation instructions.
Refer to the
[Third-party support matrix](https://rocm.docs.amd.com/projects/install-on-linux/en/docs-6.2.0/reference/3rd-party-support-matrix.html#deep-learning)
for a comprehensive list of third-party frameworks and libraries suppported by ROCm.
for a comprehensive list of third-party frameworks and libraries supported by ROCm.
#### Optimized framework support for OpenXLA
@@ -671,7 +671,7 @@ on GitHub for more information.
#### Changes
- Added suppport for:
- Added support for:
- Permute scale for any dimension (#1198).
- Combined elementwise op (#1217).
- Multi D in grouped convolution backward weight (#1280).
@@ -952,7 +952,7 @@ on GitHub for more information.
* Added `llvm.exp10` intrinsic.
* LLVM infrastruture
* LLVM infrastructure
* The minimum Clang version to build LLVM in C++20 configuration is now `clang-17.0.6`.
@@ -1712,7 +1712,7 @@ on GitHub for more information.
- Generator creation (`rocrand_create_generator`), initialization (`rocrand_initialize_generator`), and destruction (`rocrand_destroy_generator`) must still happen outside the hipGraph.
- After the generator is created, you may call API functions to set its seed, offset, and order.
- After the generator is initialized (but before stream capture or manual graph creation begins), use `rocrand_set_stream` to set the stream the generator will use within the graph.
- A generator's seed, offset, and stream may not be changed from within the hipGraph. Attempting to do so may result in unpredicable behaviour.
- A generator's seed, offset, and stream may not be changed from within the hipGraph. Attempting to do so may result in unpredictable behaviour.
- API calls for the poisson distribution (for example, `rocrand_generate_poisson`) are not yet supported inside of hipGraphs.
- For sample usage, see the unit tests in `test/test_rocrand_hipgraphs.cpp`
* Building rocRAND now requires a C++17 capable compiler, as the internal library sources now require it. However consuming rocRAND is still possible from C++11 as public headers don't make use of the new features.
@@ -1915,7 +1915,7 @@ on GitHub for more information.
- Fixed mismatch issue with `GlobalReadCoalesceGroup`.
- Fixed rocBLAS build fail on gfx11 (used state["ISA"] for reject conditions instead of globalParameters["CurrentISA"]).
- Fixed for LdsPad auto (fixed incorrect value assignment for autoAdjusted, set LdsBlockSizePerPadA or B = 0 if stride is not power of 2).
- Fixed inacurate vgpr allocation for ClusterLocalRead.
- Fixed inaccurate vgpr allocation for ClusterLocalRead.
- Fixed mismatch issue with LdsBlockSizePerPad + MT1(or 0) not power of 2.
- Fixed mismatch issue with InitAccOpt + InnerUnroll (use const 0 for src1 of MFMA only if index of innerUnrll (iui) is 0).
- Fixed HostLibraryTests on gfx942 and gfx941.

View File

@@ -59,7 +59,7 @@ on GitHub for more information.
#### Changes
- Added suppport for:
- Added support for:
- Permute scale for any dimension (#1198).
- Combined elementwise op (#1217).
- Multi D in grouped convolution backward weight (#1280).
@@ -340,7 +340,7 @@ on GitHub for more information.
* Added `llvm.exp10` intrinsic.
* LLVM infrastruture
* LLVM infrastructure
* The minimum Clang version to build LLVM in C++20 configuration is now `clang-17.0.6`.
@@ -1100,7 +1100,7 @@ on GitHub for more information.
- Generator creation (`rocrand_create_generator`), initialization (`rocrand_initialize_generator`), and destruction (`rocrand_destroy_generator`) must still happen outside the hipGraph.
- After the generator is created, you may call API functions to set its seed, offset, and order.
- After the generator is initialized (but before stream capture or manual graph creation begins), use `rocrand_set_stream` to set the stream the generator will use within the graph.
- A generator's seed, offset, and stream may not be changed from within the hipGraph. Attempting to do so may result in unpredicable behaviour.
- A generator's seed, offset, and stream may not be changed from within the hipGraph. Attempting to do so may result in unpredictable behaviour.
- API calls for the poisson distribution (for example, `rocrand_generate_poisson`) are not yet supported inside of hipGraphs.
- For sample usage, see the unit tests in `test/test_rocrand_hipgraphs.cpp`
* Building rocRAND now requires a C++17 capable compiler, as the internal library sources now require it. However consuming rocRAND is still possible from C++11 as public headers don't make use of the new features.
@@ -1303,7 +1303,7 @@ on GitHub for more information.
- Fixed mismatch issue with `GlobalReadCoalesceGroup`.
- Fixed rocBLAS build fail on gfx11 (used state["ISA"] for reject conditions instead of globalParameters["CurrentISA"]).
- Fixed for LdsPad auto (fixed incorrect value assignment for autoAdjusted, set LdsBlockSizePerPadA or B = 0 if stride is not power of 2).
- Fixed inacurate vgpr allocation for ClusterLocalRead.
- Fixed inaccurate vgpr allocation for ClusterLocalRead.
- Fixed mismatch issue with LdsBlockSizePerPad + MT1(or 0) not power of 2.
- Fixed mismatch issue with InitAccOpt + InnerUnroll (use const 0 for src1 of MFMA only if index of innerUnrll (iui) is 0).
- Fixed HostLibraryTests on gfx942 and gfx941.
@@ -1311,4 +1311,3 @@ on GitHub for more information.
- Fixed for newer windows vcpkg msgpack and vcpkg version package name.
- Fixed an error with DisableKernelPieces + 32bit ShadowLimit.
- Ignore asm cap check for kernel arg preload for rocm6.0 and older.

View File

@@ -101,7 +101,7 @@ for installation instructions.
Refer to the
[Third-party support matrix](https://rocm.docs.amd.com/projects/install-on-linux/en/latest/reference/3rd-party-support-matrix.html#deep-learning)
for a comprehensive list of third-party frameworks and libraries suppported by ROCm.
for a comprehensive list of third-party frameworks and libraries supported by ROCm.
#### Optimized framework support for OpenXLA