update log paths

This commit is contained in:
2026-04-28 15:45:35 +07:00
parent 6b28730549
commit 85c625a74a
3 changed files with 25 additions and 27 deletions
+10 -7
View File
@@ -1,6 +1,7 @@
CXX = g++
CXXFLAGS = -O3 -std=c++17 -pthread
TARGET = lab2
OUT_DIR = out
all: $(TARGET)
@@ -8,15 +9,17 @@ $(TARGET): main.cpp
$(CXX) $(CXXFLAGS) main.cpp -o $(TARGET)
run_all: $(TARGET)
@mkdir -p out/timelines
@echo "1. Generating Timelines (N=1000, Threshold=10)..."
./$(TARGET) 1000 2 10 > out/timelines/log_t2.txt
./$(TARGET) 1000 4 10 > out/timelines/log_t4.txt
python3 exporter.py out/timelines/log_t2.txt out/timelines/
python3 exporter.py out/timelines/log_t4.txt out/timelines/
@mkdir -p $(OUT_DIR)/{pics,logs}
@echo "1. Generating Timelines (Logs and Pics into $(OUT_DIR)/)..."
# Запуск и перенаправление логов в out/
./$(TARGET) 1000 2 10 > $(OUT_DIR)/logs/log_t2.txt
./$(TARGET) 1000 4 10 > $(OUT_DIR)/logs/log_t4.txt
# Генерация графиков из логов в out/pics/
python3 exporter.py $(OUT_DIR)/logs/log_t2.txt $(OUT_DIR)/pics
python3 exporter.py $(OUT_DIR)/logs/log_t4.txt $(OUT_DIR)/pics
@echo "2. Generating Efficiency Benchmark..."
python3 benchmark.py
clean:
rm -rf $(TARGET) *.txt out/
rm -rf $(TARGET) $(OUT_DIR)