#!/usr/bin/env sh# Set to 1 to not have two separate thread pools choke each other (one for# OpenMP, one for Rayon).exportOMP_NUM_THREADS=1# Let Rayon control the number of threads. Change to benchmark a specific number.exportRAYON_RS_NUM_CPUS=0exportRUSTFLAGS=-Ctarget-cpu=native# cargo +nightly bench --features testcargo +nightly bench "$@"