### Run Benchmarks With Assembly Optimizations Source: https://docs.rs/halo2curves Execute benchmarks using Rust's built-in test framework with assembly optimizations enabled via the `asm` feature. The `--nocapture` flag ensures test output is displayed. ```rust cargo test --profile bench test_field --features asm -- --nocapture ``` -------------------------------- ### Run Benchmarks Without Assembly Optimizations Source: https://docs.rs/halo2curves Execute benchmarks using Rust's built-in test framework without enabling assembly optimizations. The `--nocapture` flag ensures test output is displayed. ```rust cargo test --profile bench test_field -- --nocapture ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.