-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
163 lines (140 loc) · 4.48 KB
/
Copy pathpyproject.toml
File metadata and controls
163 lines (140 loc) · 4.48 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
[project]
name = "maester"
version = "0.2.0"
description = "Add your description here"
authors = [
{ name = "Rasmus Larsen", email = "rasmus.larsen@alexandra.dk" }
]
readme = "README.md"
requires-python = ">= 3.11, <3.12"
# Base deps (Linux CPU-only works from PyPI)
dependencies = [
"torch>=2.7",
"transformers>=4.54.0",
"datasets>=2.16.0",
"numpy<2",
"matplotlib>=3.8.4",
"wandb>=0.16.6",
"schedulefree>=1.2.5",
"tiktoken",
"blobfile",
"sentencepiece",
"pydantic",
"tensorboard",
"pydantic-settings[toml]>=2.6.0",
"triton>=3", # OpenAI Triton (PyPI). Not the same as pytorch-triton.
"cut-cross-entropy",
"pytest>=8.4.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["maester/"]
# ────────────────────────── uv (Linux-only) ──────────────────────────
[tool.uv]
# Only solve for Linux.
environments = ["sys_platform == 'linux'"]
# Prevent mixing CUDA/ROCm and stable/nightly.
conflicts = [
[ { extra = "cuda" }, { extra = "cuda-nightly" } ],
[ { extra = "rocm" }, { extra = "rocm-nightly" } ],
[ { extra = "cuda" }, { extra = "rocm" } ],
[ { extra = "cuda" }, { extra = "rocm-nightly" } ],
[ { extra = "cuda-nightly" }, { extra = "rocm" } ],
[ { extra = "cuda-nightly" }, { extra = "rocm-nightly" } ],
]
# PyTorch indices (stable + nightly)
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu128-nightly"
url = "https://download.pytorch.org/whl/nightly/cu128"
explicit = true
[[tool.uv.index]]
name = "pytorch-rocm63"
url = "https://download.pytorch.org/whl/rocm6.3"
explicit = true
[[tool.uv.index]]
name = "pytorch-rocm63-nightly"
url = "https://download.pytorch.org/whl/nightly/rocm6.3"
explicit = true
# Route packages to indices only when the matching extra is selected
[tool.uv.sources]
# Git sources
distributed-shampoo = { git = "https://github.com/facebookresearch/optimizers.git" }
cut-cross-entropy = { git = "https://github.com/apple/ml-cross-entropy.git" }
# Core PyTorch
torch = [
{ index = "pytorch-cu128", extra = "cuda" },
{ index = "pytorch-cu128-nightly", extra = "cuda-nightly" },
{ index = "pytorch-rocm63", extra = "rocm" },
{ index = "pytorch-rocm63-nightly", extra = "rocm-nightly" },
]
# Companions
torchvision = [
{ index = "pytorch-cu128", extra = "cuda" },
{ index = "pytorch-cu128-nightly", extra = "cuda-nightly" },
{ index = "pytorch-rocm63", extra = "rocm" },
{ index = "pytorch-rocm63-nightly", extra = "rocm-nightly" },
]
torchdata = [
{ index = "pytorch-cu128", extra = "cuda" },
{ index = "pytorch-cu128-nightly", extra = "cuda-nightly" },
{ index = "pytorch-rocm63", extra = "rocm" },
{ index = "pytorch-rocm63-nightly", extra = "rocm-nightly" },
]
# PyTorch's Triton runtime wheels
pytorch-triton = [
{ index = "pytorch-cu128", extra = "cuda" },
{ index = "pytorch-cu128-nightly", extra = "cuda-nightly" },
]
pytorch-triton-rocm = [
{ index = "pytorch-rocm63", extra = "rocm" },
{ index = "pytorch-rocm63-nightly", extra = "rocm-nightly" },
]
# ────────────────────────── Linting / typing ──────────────────────────
[tool.pylint."MESSAGES CONTROL"]
max-line-length = 120
disable = ["missing-class-docstring"]
[tool.pyright]
venvPath = "."
venv = ".venv"
# ────────────────────────── Optional dependency groups ──────────────────────────
# IMPORTANT: Any package gated by `tool.uv.sources` + `extra=...` must also appear here.
[project.optional-dependencies]
# CUDA 12.8 (stable)
cuda = [
"torch>=2.7",
"torchvision",
"torchdata",
"pytorch-triton==3.3.0",
"triton==3.3.1"
]
# CUDA 12.8 (nightly)
cuda-nightly = [
"torch>=2.7",
"torchvision",
"torchdata",
"pytorch-triton",
]
# ROCm 6.3 (stable)
rocm = [
"torch>=2.7",
"torchvision",
"torchdata",
"pytorch-triton-rocm",
"liger-kernel",
]
# ROCm 6.3 (nightly)
rocm-nightly = [
"torch>=2.7",
"torchvision",
"torchdata",
"pytorch-triton-rocm",
"liger-kernel",
]