Spaces:
Sleeping
Sleeping
File size: 287 Bytes
b62d5e9 | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash
# Main entry point for CUGA profiling experiments
# This is the user-facing script that should be used to run experiments
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Forward all arguments to the actual script
exec "$SCRIPT_DIR/bin/run_experiment.sh" "$@"
|