Skip to content

Commit

Permalink
Remove mention of nightly in README.md (#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pratyush authored Oct 21, 2023
1 parent 993a4e7 commit c0666a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ cargo +nightly bench
The `ark-ff` crate contains (off-by-default) optimized assembly implementations of field arithmetic that rely on the `adcxq`, `adoxq` and `mulxq` instructions. These are available on most `x86_64` platforms (Broadwell onwards for Intel and Ryzen onwards for AMD). Using this backend can lead to a 30-70% speedup in finite field and elliptic curve arithmetic. To build with this backend enabled, run the following command:

```bash
RUSTFLAGS="-C target-feature=+bmi2,+adx" cargo +nightly [test/build/bench] --features asm
RUSTFLAGS="-C target-feature=+bmi2,+adx" cargo [test/build/bench] --features asm
```

To enable this in the `Cargo.toml` of your own projects, enable the `asm` feature flag:
Expand Down

0 comments on commit c0666a8

Please sign in to comment.