Skip to content

Commit

Permalink
Add script for running test locally
Browse files Browse the repository at this point in the history
  • Loading branch information
WardLT committed May 16, 2024
1 parent f340663 commit 4854dea
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions demo_apps/task-limits/evaluate-bounds.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#! /bin/bash

worker_count=16
tasks_per_worker=8
tasks_length_std=0.01
total_tasks=$((worker_count * tasks_per_worker))

for task_size in 0.1 1 10 100; do
for task_duration in 0.01 0.1 1. 10.; do
python run.py --local-host --use-proxystore --task-count $total_tasks \
--task-input-size $task_size \
--task-output-size $task_size \
--task-length $task_duration \
--task-length-std $tasks_length_std \
--worker-count $worker_count
done
done

0 comments on commit 4854dea

Please sign in to comment.