https://github.com/rustcrypto/benchmarks
RustCrypto family benchmarks
https://github.com/rustcrypto/benchmarks
Last synced: about 1 month ago
JSON representation
RustCrypto family benchmarks
- Host: GitHub
- URL: https://github.com/rustcrypto/benchmarks
- Owner: RustCrypto
- License: unlicense
- Created: 2022-12-13T15:39:11.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-19T15:15:26.000Z (over 2 years ago)
- Last Synced: 2025-10-08T18:42:52.385Z (5 months ago)
- Language: HTML
- Homepage:
- Size: 7.76 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# benchmarks-dalek
Dalek family benchmarks
# curve25519_dalek
## Mac M1 Max - aarch64
```
env RUSTFLAGS='--cfg curve25519_dalek_bits="32"' cargo +nightly bench --features rand_core > ~/bench-u32.txt 2>&1 ; \
cargo +nightly bench --features rand_core > ~/bench-u64.txt 2>&1 ; \
env RUSTFLAGS='--cfg curve25519_dalek_backend="fiat" --cfg curve25519_dalek_bits="32"' cargo +nightly bench --features rand_core > ~/bench_fiat_u32.txt 2>&1 ; \
env RUSTFLAGS='--cfg curve25519_dalek_backend="fiat"' cargo +nightly bench --features rand_core > ~/bench_fiat_u64.txt 2>&1 ; \
env RUSTFLAGS='-C target_feature=+neon --cfg curve25519_dalek_backend="simd"' cargo +nightly bench --features rand_core > ~/bench_neon.txt 2>&1
```
## 10700K - x86_64 +avx2
```
env RUSTFLAGS='--cfg curve25519_dalek_bits="32"' cargo +nightly bench --features rand_core > ~/dalek-bench-u32.txt 2>&1 ; \
cargo +nightly bench --features rand_core > ~/dalek-bench-u64.txt 2>&1 ; \
env RUSTFLAGS='--cfg curve25519_dalek_backend="fiat" --cfg curve25519_dalek_bits="32"' cargo +nightly bench --features rand_core > ~/dalek-bench-fiat_u32.txt 2>&1 ; \
env RUSTFLAGS='--cfg curve25519_dalek_backend="fiat"' cargo +nightly bench --features rand_core > ~/dalek-bench-fiat_u64.txt 2>&1 ; \
env RUSTFLAGS='-C target_feature=+avx2 --cfg curve25519_dalek_backend="simd"' cargo +nightly bench --features rand_core > ~/dalek-bench-avx2.txt 2>&1
```
# ed25519
| Implementation |
| :--- |
| [ed25519-dalek] |
[ed25519-dalek]: ed25519/dalek