Skip to content

Commit

Permalink
Fix broken link on website and stop publishing some asset files. (#18237
Browse files Browse the repository at this point in the history
)

We don't need to publish the `iree_architecture.excalidraw.gz` file or
the README from
https://github.com/iree-org/iree/tree/main/docs/website/docs/assets/images.
  • Loading branch information
ScottTodd authored Aug 16, 2024
1 parent 41f1f49 commit 12e2eb4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/website/docs/community/blog/posts/microkernels.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ interesting happens *to* it.:

[➤ Appendix: IR dump after WrapEntryPointsPass](#ir-dump-after-wrapentrypointspass)

Next, the first interesting thing is the `CPUMaterializeEncoding` pass, where
Next, the first interesting thing is the `CPUMaterializeHostEncoding` pass, where
the `linalg.matmul` gets rewritten into a `linalg.mmt4d` which is a matmul with
a tiled data layout. This is where we start specializing to the target ISA
feature set, AVX-512, favoring a 16x16 tile size for this float32 matmul.

[➤ Appendix: IR Dump After CPUMaterializeEncoding](#ir-dump-after-cpumaterializeencoding)
[➤ Appendix: IR Dump After CPUMaterializeHostEncoding](#ir-dump-after-cpumaterializehostencoding)

The idea is that `linalg.mmt4d` is what we will have a microkernel for, below.
There is no need to have microkernels for anything but the target-optimal tiled
Expand Down
4 changes: 4 additions & 0 deletions docs/website/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ extra_css:
- assets/stylesheets/extra.css
- assets/stylesheets/iree.css

exclude_docs: |
*.gz
assets/images/README.md
copyright: Copyright © 2024 The IREE Authors

markdown_extensions:
Expand Down

0 comments on commit 12e2eb4

Please sign in to comment.