Skip to content

Commit

Permalink
Sync CUTLASS with upstream (facebookincubator#662)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebookincubator#662

A few issues in the CUTLASS codebase blocking the integration of the CUTLASS 3.x SM90 kernels in AITemplate have been fixed upstream (see, e.g., the merged PRs [facebookincubator#920](NVIDIA/cutlass#920) and [facebookincubator#927](NVIDIA/cutlass#927)). The CUTLASS version is synced with the upstream to proceed with the SM90 integration.

Differential Revision: https://internalfb.com/D45603657

fbshipit-source-id: 04d5dd0666cfa52ee49879947ccc62f1eea01c8c
  • Loading branch information
aakhundov authored and facebook-github-bot committed May 7, 2023
1 parent 25f33c9 commit 10ebb98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/cutlass
Submodule cutlass updated 87 files
+2 −2 examples/41_fused_multi_head_attention/iterators/predicated_tile_access_iterator_residual_last.h
+3 −1 include/cute/arch/copy_sm90_desc.hpp
+5 −4 include/cutlass/kernel_hardware_info.hpp
+1 −1 media/docs/cute/01_layout.md
+2 −3 media/docs/cute/02_layout_operations.md
+4 −4 python/README.md
+38 −0 python/docker/Dockerfile-cuda12.1-pytorch
+4 −0 python/docs/.buildinfo
+923 −0 python/docs/_modules/cutlass/emit/pytorch.html
+391 −0 python/docs/_modules/cutlass/epilogue.html
+729 −0 python/docs/_modules/cutlass/library_defaults.html
+980 −0 python/docs/_modules/cutlass/op/gemm.html
+554 −0 python/docs/_modules/cutlass/op/gemm_grouped.html
+400 −0 python/docs/_modules/cutlass/op/op.html
+350 −0 python/docs/_modules/cutlass/swizzle.html
+476 −0 python/docs/_modules/cutlass/utils/check.html
+623 −0 python/docs/_modules/cutlass/utils/datatypes.html
+293 −0 python/docs/_modules/index.html
+9 −0 python/docs/_sources/contribute.md.txt
+18 −0 python/docs/_sources/cutlass.emit.rst.txt
+26 −0 python/docs/_sources/cutlass.op.rst.txt
+36 −0 python/docs/_sources/cutlass.rst.txt
+18 −0 python/docs/_sources/cutlass.utils.rst.txt
+9 −0 python/docs/_sources/examples.rst.txt
+3 −0 python/docs/_sources/externals/00_basic_gemm.nblink.txt
+3 −0 python/docs/_sources/externals/01_epilogue.nblink.txt
+3 −0 python/docs/_sources/externals/02_pytorch_extension_grouped_gemm.nblink.txt
+55 −0 python/docs/_sources/index.rst.txt
+36 −0 python/docs/_sources/install.md.txt
+7 −0 python/docs/_sources/modules.rst.txt
+903 −0 python/docs/_static/basic.css
+4 −0 python/docs/_static/check-solid.svg
+7 −0 python/docs/_static/clipboard.min.js
+5 −0 python/docs/_static/copy-button.svg
+94 −0 python/docs/_static/copybutton.css
+248 −0 python/docs/_static/copybutton.js
+73 −0 python/docs/_static/copybutton_funcs.js
+ python/docs/_static/cutlass-logo-small.png
+69 −0 python/docs/_static/debug.css
+156 −0 python/docs/_static/doctools.js
+14 −0 python/docs/_static/documentation_options.js
+ python/docs/_static/file.png
+199 −0 python/docs/_static/language_data.js
+ python/docs/_static/logo-dark-mode.png
+ python/docs/_static/logo-light-mode.png
+ python/docs/_static/minus.png
+9 −0 python/docs/_static/nbsphinx-broken-thumbnail.svg
+253 −0 python/docs/_static/nbsphinx-code-cells.css
+31 −0 python/docs/_static/nbsphinx-gallery.css
+9 −0 python/docs/_static/nbsphinx-no-thumbnail.svg
+ python/docs/_static/plus.png
+246 −0 python/docs/_static/pygments.css
+0 −0 python/docs/_static/scripts/furo-extensions.js
+3 −0 python/docs/_static/scripts/furo.js
+7 −0 python/docs/_static/scripts/furo.js.LICENSE.txt
+1 −0 python/docs/_static/scripts/furo.js.map
+566 −0 python/docs/_static/searchtools.js
+296 −0 python/docs/_static/skeleton.css
+144 −0 python/docs/_static/sphinx_highlight.js
+2 −0 python/docs/_static/styles/furo-extensions.css
+1 −0 python/docs/_static/styles/furo-extensions.css.map
+2 −0 python/docs/_static/styles/furo.css
+1 −0 python/docs/_static/styles/furo.css.map
+110 −0 python/docs/_static/tabs.css
+21 −0 python/docs/_static/tabs.js
+320 −0 python/docs/contribute.html
+394 −0 python/docs/cutlass.emit.html
+628 −0 python/docs/cutlass.html
+784 −0 python/docs/cutlass.op.html
+663 −0 python/docs/cutlass.utils.html
+330 −0 python/docs/examples.html
+821 −0 python/docs/externals/00_basic_gemm.html
+727 −0 python/docs/externals/00_basic_gemm.ipynb
+764 −0 python/docs/externals/01_epilogue.html
+593 −0 python/docs/externals/01_epilogue.ipynb
+537 −0 python/docs/externals/02_pytorch_extension_grouped_gemm.html
+356 −0 python/docs/externals/02_pytorch_extension_grouped_gemm.ipynb
+656 −0 python/docs/genindex.html
+529 −0 python/docs/index.html
+364 −0 python/docs/install.html
+406 −0 python/docs/modules.html
+ python/docs/objects.inv
+362 −0 python/docs/py-modindex.html
+295 −0 python/docs/search.html
+1 −0 python/docs/searchindex.js
+5 −6 python/docs_src/source/install.md
+1 −1 tools/library/scripts/generator.py

0 comments on commit 10ebb98

Please sign in to comment.