-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (23 loc) · 789 Bytes
/
Makefile
File metadata and controls
30 lines (23 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
.PHONY: setup check test run evaluate monitor reclaim all
# Install dependencies and setup Git hooks
setup:
uv sync
uv run pre-commit install
# Run static analysis and formatting
check:
uv run pre-commit run --all-files
uv run ruff check .
# Run the test suite
test:
uv run pytest --cov=kernel_methods tests/
# Execute the core start pipeline (dry-run/testing bounds)
run:
uv run start
# Evaluate a specific configuration experiment (e.g., make evaluate EXPS="linear rbf")
evaluate:
uv run python scripts/evaluate.py --experiments $(if $(EXPS),$(EXPS),linear)
# Start periodic monitoring of running experiments and recent results
monitor:
./scripts/monitor_experiments.sh $(if $(INTERVAL),$(INTERVAL),45)
# Perform global verification of the workspace
all: setup check test