mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 21:35:00 +00:00
27 lines
756 B
Bash
Executable file
27 lines
756 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
###
|
|
# Benchmark the resolver against `pip-compile`.
|
|
#
|
|
# Example usage:
|
|
#
|
|
# ./scripts/benchmarks/compile.sh ./scripts/benchmarks/requirements.in
|
|
###
|
|
|
|
set -euxo pipefail
|
|
|
|
TARGET=${1}
|
|
|
|
###
|
|
# Resolution with a cold cache.
|
|
###
|
|
hyperfine --runs 20 --warmup 3 --prepare "rm -f /tmp/requirements.txt" \
|
|
"./target/release/puffin --no-cache pip-compile ${TARGET} > /tmp/requirements.txt" \
|
|
"./target/release/main --no-cache pip-compile ${TARGET} > /tmp/requirements.txt"
|
|
|
|
###
|
|
# Resolution with a warm cache.
|
|
###
|
|
hyperfine --runs 20 --warmup 3 --prepare "rm -f /tmp/requirements.txt" \
|
|
"./target/release/puffin pip-compile ${TARGET} > /tmp/requirements.txt" \
|
|
"./target/release/main pip-compile ${TARGET} > /tmp/requirements.txt"
|