First omp

This commit is contained in:
2026-06-23 15:07:55 +02:00
parent b842990cd4
commit 77d2dad320
18 changed files with 789 additions and 88 deletions
Executable
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/env bash
set -e
#---------------------------------------------------------------------------------------------------------------------------
# CLEAN BUILD FILES
#---------------------------------------------------------------------------------------------------------------------------
# Removes the CMake build folder.
# This deletes compiled files, cached CMake settings, and the old executable.
rm -rf build
#---------------------------------------------------------------------------------------------------------------------------
# RECONFIGURE, REBUILD, AND RUN
#---------------------------------------------------------------------------------------------------------------------------
# Forward all arguments to run.sh.
#
# Examples:
# ./clean_run.sh
# ./clean_run.sh omp
# ./clean_run.sh omp 4
./run.sh "$@"