Skip to content
Merged
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
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,16 @@ rustup toolchain link enzyme build/host/stage1
rustup toolchain install nightly # enables -Z unstable-options
```

You can then run an examples from our [docs](https://enzyme.mit.edu/index.fcgi/rust/usage/usage.html) using
You can then run examples from our [docs](https://enzyme.mit.edu/index.fcgi/rust/usage/usage.html):

```bash
cargo +enzyme run --release
cd ..
git clone [email protected]:EnzymeAD/rustbook.git
cd rustbook/samples
cargo +enzyme test reverse
```
If you want to use Autodiff in your own projects, please always enable `lto="fat"` in your Cargo.toml
and use `cargo +enzyme` instead of `cargo` or `cargo +nightly`.

## Bug reporting
Bugs are pretty much expected at this point of the development process.
Expand Down