forked from metaopt/torchopt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
294 lines (274 loc) · 9.27 KB
/
pyproject.toml
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
# Package ######################################################################
[build-system]
# Sync with project.dependencies
requires = ["setuptools", "torch >= 1.13", "numpy", "pybind11 >= 2.10.1"]
build-backend = "setuptools.build_meta"
[project]
name = "torchopt"
description = "An efficient library for differentiable optimization for PyTorch."
readme = "README.md"
# Change this if wheels for `torch` is available
# Search "requires-python" and update all corresponding items
requires-python = ">= 3.8"
authors = [
{ name = "TorchOpt Contributors" },
{ name = "Jie Ren", email = "[email protected]" },
{ name = "Xidong Feng", email = "[email protected]" },
{ name = "Bo Liu", email = "[email protected]" },
{ name = "Xuehai Pan", email = "[email protected]" },
]
license = { text = "Apache License, Version 2.0" }
keywords = [
"PyTorch",
"functorch",
"JAX",
"Meta-Learning",
"Optimizer",
"Differentiable Optimizer",
"Functional Programming",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
# Sync with requires-python
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Environment :: GPU",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
# See also build-system.requires and project.requires-python
"torch >= 1.13",
"optree >= 0.4.1",
"numpy",
"graphviz",
"typing-extensions >= 4.0.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/metaopt/torchopt"
Repository = "https://github.com/metaopt/torchopt"
Documentation = "https://torchopt.readthedocs.io"
"Bug Report" = "https://github.com/metaopt/torchopt/issues"
[project.optional-dependencies]
lint = [
"isort",
"black[jupyter] >= 22.6.0",
"pylint[spelling] >= 2.15.0",
"mypy >= 0.990",
"flake8",
"flake8-bugbear",
"flake8-comprehensions",
"flake8-docstrings",
"flake8-pyi",
"flake8-simplify",
"ruff",
"doc8",
"pydocstyle[toml]",
"pyenchant",
"cpplint",
"pre-commit",
]
test = [
'pytest',
'pytest-cov',
'pytest-xdist',
'jax[cpu] >= 0.3; platform_system != "Windows"',
'jaxopt; platform_system != "Windows"',
'optax; platform_system != "Windows"',
]
[tool.setuptools.packages.find]
include = ["torchopt", "torchopt.*"]
# Wheel builder ################################################################
# Reference: https://cibuildwheel.readthedocs.io
[tool.cibuildwheel]
archs = ["auto64"]
build = "*manylinux*"
skip = "pp* *musllinux*"
build-frontend = "pip"
build-verbosity = 3
environment.USE_FP16 = "ON"
environment.CUDACXX = "/usr/local/cuda/bin/nvcc"
environment.TORCH_CUDA_ARCH_LIST = "Common"
environment.DEFAULT_CUDA_VERSION = "11.7"
environment.DEFAULT_TEST_TORCH_SPECS = "cpu cu116"
environment-pass = ["CUDA_VERSION", "TEST_TORCH_SPECS"]
container-engine = "docker"
test-extras = ["test"]
[tool.cibuildwheel.linux]
before-all = """
CUDA_VERSION="${CUDA_VERSION:-"${DEFAULT_CUDA_VERSION}"}"
if [[ "${CUDA_VERSION}" == "None" || "${CUDA_VERSION}" == "none" ]]; then
sed -i -E "s/__version__\\s*=\\s*.*$/\\0 + '+cpu'/" torchopt/version.py
else
CUDA_VERSION="$(echo "${CUDA_VERSION}" | cut -d"." -f-2)"
CUDA_PKG_SUFFIX="$(echo "${CUDA_VERSION}" | tr "." "-")"
echo "CUDA_VERSION=${CUDA_VERSION}"
yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel7/x86_64/cuda-rhel7.repo
yum clean all
yum install -y nvidia-driver-latest-libs "cuda-minimal-build-${CUDA_PKG_SUFFIX}"
fi
echo "cat torchopt/version.py"; cat torchopt/version.py
touch .first-python
"""
repair-wheel-command = """
python -m pip install -r requirements.txt
SITE_PACKAGES="$(python -c 'print(__import__("sysconfig").get_path("purelib"))')"
TORCH_LIB_PATH="${SITE_PACKAGES}/torch/lib"
(
export LD_LIBRARY_PATH="${TORCH_LIB_PATH}:/usr/local/cuda/lib64:/usr/local/cuda/targets/x86_64-linux/lib/stubs${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}"
echo "ls ${TORCH_LIB_PATH}"; ls -lh "${TORCH_LIB_PATH}"
python -m pip install --force-reinstall git+https://github.com/XuehaiPan/auditwheel.git@torchopt
python -m auditwheel lddtree "{wheel}"
python -m auditwheel repair --no-copy-site-libs --wheel-dir="{dest_dir}" "{wheel}"
)
"""
test-command = """
SITE_PACKAGES="$(python -c 'print(__import__("sysconfig").get_path("purelib"))')"
TORCH_LIB_PATH="${SITE_PACKAGES}/torch/lib"
echo "LD_LIBRARY_PATH='${LD_LIBRARY_PATH}'"
echo "ls ${TORCH_LIB_PATH}"; ls -lh "${TORCH_LIB_PATH}"
find "${SITE_PACKAGES}/torchopt" -name "*.so" -print0 |
xargs -0 -I '{}' bash -c "echo 'ldd {}'; ldd '{}'; echo 'patchelf --print-rpath {}'; patchelf --print-rpath '{}'"
make -C "{project}" test || exit 1
TORCH_VERSION="$(python -c 'print(__import__("torch").__version__.partition("+")[0])')"
if [[ -f .first-python ]]; then
TEST_TORCH_SPECS="${TEST_TORCH_SPECS:-"${DEFAULT_TEST_TORCH_SPECS}"}"
for spec in ${TEST_TORCH_SPECS}; do
python -m pip uninstall -y torch
export PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/${spec}"
echo "PIP_EXTRA_INDEX_URL='${PIP_EXTRA_INDEX_URL}'"
python -m pip install "torch==${TORCH_VERSION}"
echo "ls ${TORCH_LIB_PATH}"; ls -lh "${TORCH_LIB_PATH}"
find "${SITE_PACKAGES}/torchopt" -name "*.so" -print0 |
xargs -0 -I '{}' bash -c "echo 'ldd {}'; ldd '{}'; echo 'patchelf --print-rpath {}'; patchelf --print-rpath '{}'"
make -C "{project}" test || exit 1
done
rm -f .first-python
fi
rm -rf ~/.pip/cache ~/.cache/pip
"""
# Linter tools #################################################################
[tool.black]
safe = true
line-length = 100
skip-string-normalization = true
# Sync with requires-python
target-version = ["py38", "py39", "py310", "py311"]
[tool.isort]
atomic = true
profile = "black"
src_paths = ["torchopt", "examples", "tests"]
extra_standard_library = ["typing_extensions"]
indent = 4
line_length = 100
lines_after_imports = 2
multi_line_output = 3
[tool.mypy]
# Sync with requires-python
python_version = 3.8
pretty = true
show_error_codes = true
show_error_context = true
show_traceback = true
allow_redefinition = true
check_untyped_defs = true
disallow_incomplete_defs = false
disallow_untyped_defs = false
ignore_missing_imports = true
no_implicit_optional = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.pydocstyle]
convention = "google"
[tool.doc8]
max-line-length = 500
[tool.ruff]
# Sync with requires-python
target-version = "py38"
line-length = 100
show-source = true
src = ["torchopt", "tests"]
extend-exclude = ["examples", "tests"]
select = [
"E", "W", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"ANN", # flake8-annotations
"S", # flake8-bandit
"BLE", # flake8-blind-except
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"EXE", # flake8-executable
"ISC", # flake8-implicit-str-concat
"PIE", # flake8-pie
"PYI", # flake8-pyi
"RSE", # flake8-raise
"RET", # flake8-return
"SIM", # flake8-simplify
"TID", # flake8-tidy-imports
"RUF", # ruff
]
ignore = [
# E501: line too long
# W505: doc line too long
# too long docstring due to long example blocks
"E501",
"W505",
# ANN101: missing type annotation for `self` in method
# ANN102: missing type annotation for `cls` in classmethod
"ANN101",
"ANN102",
# ANN401: dynamically typed expressions (typing.Any) are disallowed
"ANN401",
# S101: use of `assert` detected
# internal use and may never raise at runtime
"S101",
# PLR0402: use from {module} import {name} in lieu of alias
# use alias for import convention (e.g., `import torch.nn as nn`)
"PLR0402",
]
typing-modules = ["torchopt.typing"]
[tool.ruff.per-file-ignores]
"__init__.py" = [
"F401", # unused-import
]
"torchopt/pytree.py" = [
"F401", # unused-import
"F403", # import-star
"F405", # import-star-usage
]
"setup.py" = [
"ANN", # flake8-annotations
]
[tool.ruff.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
multiline-quotes = "double"
inline-quotes = "single"
[tool.ruff.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.pylint]
allow-magic-value-types = ["int", "str", "float"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
'ignore:Explicitly requested dtype float64 requested in .* is not available, and will be truncated to dtype float32\.:UserWarning',
]