-
Notifications
You must be signed in to change notification settings - Fork 961
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix typos in cute docs #1486
Fix typos in cute docs #1486
Conversation
Thanks! |
Hi, @ccecka, in this example, I think it should be |
Looks like that last line describing It should read
|
Found another mistake in https://github.com/NVIDIA/cutlass/blob/main/media/docs/cute/03_tensor.md#owning-tensors The example of Tensor rmem_4x8_pad = make_tensor<float>(Shape <_4, _8>{},
Stride<_2,_32>{});
Tensor rmem_4x8_like = make_tensor_like(rmem_4x8_pad); and according to the order of the rmem_4x8_pad : ptr[32b](0x7ff1c8fff920) o (_4,_8):(_2,_32)
rmem_4x8_like : ptr[32b](0x7f4158fffc60) o (_4,_8):(_1,_4) |
Gah, good finds. Can you edit those to: Tensor rmem_4x8_pad = make_tensor<float>(Shape < _4,_8>{},
Stride<_32,_2>{});
Tensor rmem_4x8_like = make_tensor_like(rmem_4x8_pad); and rmem_4x8_pad : ptr[32b](0x7ff1c8fff920) o (_4,_8):(_32,_2)
rmem_4x8_like : ptr[32b](0x7f4158fffc60) o (_4,_8):(_8,_1) Thanks for your help! |
Got it. I am a beginner in cutlass/cute. I will read all cute docs, fix the typos and submit them in this MR. |
3f61d6b
to
448b0df
Compare
EDIT: Let's actually keep the references to and uses of |
For explanation purposes, I would rather keep it as the simple |
@irasin Are you happy with this PR? This is a good time to add in the |
Sorry for the lack of updates. @ccecka , About the |
Ok @hwu36, let's merge this now and I'll deal with the missing function in another review. Thanks for your help! |
* fix typos in 02_layout_algebra.md * fix typos in 03_tensor.md
* fix typos in 02_layout_algebra.md * fix typos in 03_tensor.md
No description provided.