This commit is contained in:
2026-03-17 11:21:20 +03:00
parent 6f718668c8
commit bbb1b91e95
10 changed files with 627 additions and 0 deletions

6
task2/scripts/build_mpi.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
mkdir -p bin
mpicc -O3 -std=c99 -o bin/wave_mpi src/wave_mpi.c
echo "Built bin/wave_mpi"