Fix typo in docs, code comments (#429)

* [docs] fix typo in media/docs/layout.md

* [docs] fix comment error

* fix typo in include/cutlass/arch/simd_61.h

* fix stride comment errors in TensorLayout
This commit is contained in:
Feng Shijie
2022-03-16 09:54:36 +08:00
committed by GitHub
parent b2e1e97cb1
commit cd39c75e25
3 changed files with 7 additions and 7 deletions

View File

@@ -126,8 +126,8 @@ This method is needed when an algorithm must define a buffer of arbitrary layout
Example:
```c++
typename ArbitraryLayout::TensorCord extent = make_Coord(...);
typename ArbitraryLayout::TensorCord coord;
typename ArbitraryLayout::TensorCoord extent = make_Coord(...);
typename ArbitraryLayout::TensorCoord coord;
ArbitraryLayout layout = ArbitraryLayout::packed(extent);