File size: 287 Bytes
0646b18
 
 
 
 
 
 
 
 
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" "$@"