mirror of
https://github.com/NVIDIA/dgx-spark-playbooks.git
synced 2026-06-20 13:19:34 +00:00
10 lines
257 B
Bash
Executable File
10 lines
257 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Run the recommendation throughput benchmark.
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
REPO_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
|
|
exec uv run --project "$REPO_DIR" python "$SCRIPT_DIR/benchmark_throughput.py" "$@"
|