removed redundant experiment

This commit is contained in:
2026-05-25 16:13:19 +03:00
parent e08467972d
commit 2018c11856
2 changed files with 0 additions and 40 deletions
-13
View File
@@ -150,12 +150,6 @@ compile_fork_bomb() {
"$ROOT_DIR/fork_bomb/fork_bomb.c"
}
compile_thread_stress() {
log "Compiling thread_stress"
gcc -O2 -pthread -o "$ROOT_DIR/thread_stress_test/thread_stress" \
"$ROOT_DIR/thread_stress_test/thread_stress.c"
}
compile_thread_recursive() {
log "Compiling thread_recursive"
gcc -O2 -pthread -o "$ROOT_DIR/thread_recursive_scaling/thread_recursive" \
@@ -164,7 +158,6 @@ compile_thread_recursive() {
compile_creation_time
compile_fork_bomb
compile_thread_stress
compile_thread_recursive
# Defaults (override by env vars)
@@ -207,11 +200,5 @@ run_with_sampling \
"$OUT_DIR/thread_recursive_scaling.csv" \
0
run_with_sampling \
"thread_stress" \
"cd '$ROOT_DIR/thread_stress_test' && ./thread_stress" \
"$OUT_DIR/thread_stress.csv" \
0
log "All experiments finished"
log "Run directory: $OUT_DIR"