tig-monorepo/scripts/test_algorithm.sh
FiveMovesAhead c4858c6dee
Some checks are pending
Test Workspace / Test Workspace (push) Waiting to run
Fix test_algorithm defaults.
2025-03-24 15:56:38 +08:00

173 lines
5.8 KiB
Bash

#!/bin/bash
REPO_DIR=$(dirname $(dirname "$(realpath "$0")"))
TIG_WORKER_PATH="$REPO_DIR/target/release/tig-worker"
if [ ! -f $TIG_WORKER_PATH ]; then
echo "Error: tig-worker binary not found at ./target/release/tig-worker"
echo "Run: cd $REPO_DIR && cargo build -p tig-worker --release"
exit 1
fi
options=()
index=0
echo "Available WASMs:"
for w in $(find $REPO_DIR/tig-algorithms/wasm -name '*.wasm'); do
a_name=$(basename $w .wasm)
c_name=$(basename $(dirname $w))
echo "$index) $c_name/$a_name"
options+=("$c_name/$a_name")
index=$((index + 1))
done
echo "Don't see the algorithm you're looking for? Can run: git pull origin <challenge_name>/<algorithm_name> --no-edit"
read -p "Enter the index of the algorithm to test: " selected_index
if [[ $selected_index =~ ^[0-9]+$ ]] && [ "$selected_index" -ge 0 ] && [ "$selected_index" -lt "$index" ]; then
selected_option=${options[$selected_index]}
echo "Testing: $selected_option"
else
echo "Invalid index"
exit 1
fi
CHALLENGE=$(dirname $selected_option)
ALGORITHM=$(basename $selected_option)
case $CHALLENGE in
satisfiability)
CHALLENGE_ID="c001"
;;
vehicle_routing)
CHALLENGE_ID="c002"
;;
knapsack)
CHALLENGE_ID="c003"
;;
vector_search)
CHALLENGE_ID="c004"
;;
*)
echo "Error: Challenge '$CHALLENGE' is not recognized."
exit 1
;;
esac
read -p "Enter difficulty for $CHALLENGE in format [x,y]: " difficulty
regex='^\[[0-9]+,[0-9]+\]$'
if ! [[ $difficulty =~ $regex ]]; then
echo "Error: Difficulty must be in the format [x,y] where x and y are positive integers."
exit 1
fi
is_positive_integer() {
[[ $1 =~ ^[0-9]+$ ]] && [ "$1" -ge 0 ]
}
read -p "Enter starting nonce: " start_nonce
if ! is_positive_integer "$start_nonce"; then
echo "Error: Starting nonce must be a positive integer."
exit 1
fi
read -p "Enter number of nonces: " num_nonces
if ! is_positive_integer "$num_nonces"; then
echo "Error: Number of nonces must be a positive integer."
exit 1
fi
read -p "Enter number of workers (default is 1): " num_workers
num_workers=${num_workers:-1}
if ! is_positive_integer "$num_workers"; then
echo "Error: Number of workers must be a positive integer."
exit 1
fi
read -p "Enter max fuel (default is 10000000000): " max_fuel
max_fuel=${max_fuel:-10000000000}
if ! is_positive_integer "$max_fuel"; then
echo "Error: Max fuel must be a positive integer."
exit 1
fi
read -p "Enable debug mode? (leave blank to disable) " enable_debug
if [[ -n $enable_debug ]]; then
debug_mode=true
else
debug_mode=false
fi
get_closest_power_of_2() {
local n=$1
local p=1
while [ $p -lt $n ]; do
p=$((p * 2))
done
echo $p
}
SETTINGS="{\"challenge_id\":\"$CHALLENGE_ID\",\"difficulty\":$difficulty,\"algorithm_id\":\"\",\"player_id\":\"\",\"block_id\":\"\"}"
num_solutions=0
num_invalid=0
total_ms=0
echo "----------------------------------------------------------------------"
echo "Testing performance of $CHALLENGE/$ALGORITHM"
echo "Settings: $SETTINGS"
echo "Starting nonce: $start_nonce"
echo "Number of nonces: $num_nonces"
echo "Number of workers: $num_workers"
echo -ne ""
remaining_nonces=$num_nonces
current_nonce=$start_nonce
while [ $remaining_nonces -gt 0 ]; do
nonces_to_compute=$((num_workers < remaining_nonces ? num_workers : remaining_nonces))
power_of_2_nonces=$(get_closest_power_of_2 $nonces_to_compute)
start_time=$(date +%s%3N)
stdout=$(mktemp)
stderr=$(mktemp)
./target/release/tig-worker compute_batch "$SETTINGS" "random_string" $current_nonce $nonces_to_compute $power_of_2_nonces $REPO_DIR/tig-algorithms/wasm/$CHALLENGE/$ALGORITHM.wasm --workers $nonces_to_compute --fuel $max_fuel >"$stdout" 2>"$stderr"
exit_code=$?
output_stdout=$(cat "$stdout")
output_stderr=$(cat "$stderr")
end_time=$(date +%s%3N)
duration=$((end_time - start_time))
total_ms=$((total_ms + (duration * nonces_to_compute)))
if [ $exit_code -eq 0 ]; then
solutions_count=$(echo "$output_stdout" | grep -o '"solution_nonces":\[.*\]' | sed 's/.*\[\(.*\)\].*/\1/' | awk -F',' '{print NF}')
invalid_count=$((nonces_to_compute - solutions_count))
num_solutions=$((num_solutions + solutions_count))
num_invalid=$((num_invalid + invalid_count))
fi
if [ $num_solutions -eq 0 ]; then
avg_ms_per_solution=0
else
avg_ms_per_solution=$((total_ms / num_solutions))
fi
if [[ $debug_mode == true ]]; then
echo " Current nonce: $current_nonce"
echo " Nonces computed: $nonces_to_compute"
echo " Exit code: $exit_code"
echo " Stdout: $output_stdout"
echo " Stderr: $output_stderr"
echo " Duration: $duration ms"
echo "#instances: $((num_solutions + num_invalid)), #solutions: $num_solutions, #invalid: $num_invalid, average ms/solution: $avg_ms_per_solution"
else
echo -ne "#instances: $((num_solutions + num_invalid)), #solutions: $num_solutions, #invalid: $num_invalid, average ms/solution: $avg_ms_per_solution\033[K\r"
fi
current_nonce=$((current_nonce + nonces_to_compute))
remaining_nonces=$((remaining_nonces - nonces_to_compute))
done
echo
echo "----------------------------------------------------------------------"
echo "To re-run this test, run the following commands:"
echo " git clone https://github.com/tig-foundation/tig-monorepo.git"
echo " cd tig-monorepo"
echo " git pull origin/$CHALLENGE/$ALGORITHM --no-edit"
echo " bash scripts/test_algorithm.sh"
echo "----------------------------------------------------------------------"
echo "Share your results on https://www.reddit.com/r/TheInnovationGame"
echo "----------------------------------------------------------------------"
rm "$stdout" "$stderr"