forked from karpathy/autoresearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (30 loc) · 721 Bytes
/
Makefile
File metadata and controls
45 lines (30 loc) · 721 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
.PHONY: sync test lint format typecheck standardize run run-sweep run-remote history monitor prepare check-gpu
sync:
uv sync --group dev
test:
uv run pytest
lint:
uv run ruff check .
format:
uv run ruff format .
format-check:
uv run ruff format --check .
typecheck:
uv run mypy tests/ experiments/gpt-pretrain/schedules.py skylab/
standardize:
uv run ruff format . && uv run ruff check --fix .
# --- Skylab orchestrator commands ---
run:
uv run skylab run
run-sweep:
uv run skylab run --strategy sweep
run-remote:
uv run skylab run --runner remote
history:
uv run skylab history
monitor:
uv run skylab monitor
prepare:
uv run skylab prepare
check-gpu:
uv run skylab check-gpu --runner remote