Commit eb9a4c6b authored by saad.aswad's avatar saad.aswad

docs: add commented flag for github ci

parent 93de92c2
#!/bin/bash #!/bin/bash
set -e set -e
# NOTE: For GitHub Actions or environments with limited slots, uncomment the flag below:
# FLAGS="--oversubscribe"
FLAGS=""
echo "Running Problem 1: Prefix Sum (NP=3)" echo "Running Problem 1: Prefix Sum (NP=3)"
mpiexec -n 3 python3 src/problem1/prefix_sum.py mpiexec $FLAGS -n 3 python3 src/problem1/prefix_sum.py
echo "-----------------------------------" echo "-----------------------------------"
echo "Running Problem 2: Manual Reduce Benchmark (NP=3)" echo "Running Problem 2: Manual Reduce Benchmark (NP=3)"
mpiexec -n 3 python3 src/problem2/benchmark.py mpiexec $FLAGS -n 3 python3 src/problem2/benchmark.py
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment