Skip to content
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

Adjust style on new blog posts. #17271

Merged
merged 2 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/website/docs/community/blog/posts/linalg-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,12 @@ iree-compile --iree-hal-target-backends=llvm-cpu prog.mlir -o /tmp/prog.vmfb
`--device=` to `iree-run-module` below.
* To cross-compile, explore `--iree-llvmcpu-target-triple=`.
* To enable higher CPU performance by enabling CPU features:
* On x86, explore `--iree-llvmcpu-target-cpu=` (e.g.
`--iree-llvmcpu-target-cpu=znver4` to target AMD Zen4).
* On other architectures, explore `--iree-llvmcpu-target-cpu-features=`.
* To optimize for running on the same machine that the compilation ran
on, pass `--iree-llvmcpu-target-cpu=host`. That works regardless of
CPU architecture.
* On x86, explore `--iree-llvmcpu-target-cpu=` (e.g.
`--iree-llvmcpu-target-cpu=znver4` to target AMD Zen4).
* On other architectures, explore `--iree-llvmcpu-target-cpu-features=`.
* To optimize for running on the same machine that the compilation ran
on, pass `--iree-llvmcpu-target-cpu=host`. That works regardless of
CPU architecture.
* Check out
[these docs](../../../developers/general/developer-tips.md) for
more useful `iree-compile` flags.
Expand Down
4 changes: 4 additions & 0 deletions docs/website/docs/community/blog/posts/microkernels.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ subgraph Part3["Part 3: Linking with microkernels, optimizing, producing object
object
vmfb
end

style Part1 stroke:#FDD835,stroke-width:2px
style Part2 stroke:#039BE5,stroke-width:2px
style Part3 stroke:#43A047,stroke-width:2px
```

## 🟨 Part 1: MLIR code generation
Expand Down
Loading