forked from jax-ml/jax
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
158 lines (146 loc) · 4.49 KB
/
pyproject.toml
File metadata and controls
158 lines (146 loc) · 4.49 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.mypy]
show_error_codes = true
disable_error_code = "attr-defined, name-defined, annotation-unchecked"
no_implicit_optional = true
warn_redundant_casts = true
allow_redefinition = true
[[tool.mypy.overrides]]
module = [
"IPython.*",
"absl.*",
"compression.*",
"etils.*",
"filelock.*",
"flatbuffers.*",
"flax.*",
"google.colab.*",
"hypothesis.*",
"jax.experimental.jax2tf.tests.back_compat_testdata",
"jax.experimental.jax2tf.tests.flax_models",
"jax_cuda12_plugin.*",
"jax_cuda13_plugin.*",
"jaxlib.cpu_feature_guard",
"jaxlib.cuda.*",
"jaxlib.mlir.*",
"jaxlib.mosaic.dialect.gpu.*",
"jaxlib.mosaic.python._tpu_gen",
"jaxlib.triton.*",
"jaxlib.utils",
"jaxlib.version",
"jaxlib._jax.utils",
"jaxlib._pretty_printer",
"jraph.*",
"libtpu.*",
"matplotlib.*",
"mlir.*",
"ml_dtypes.*",
"nvidia.*",
"numpy.*",
"opt_einsum.*",
"optax.*",
"portpicker.*",
"pygments.*",
"pytest.*",
"rich.*",
"setuptools.*",
"xprof.convert.*",
"tensorflow.*",
"tensorflow.io.*",
"tensorflowjs.*",
"tensorstore.*",
"web_pdb.*",
"zstandard.*",
"kubernetes.*"
]
ignore_missing_imports = true
[tool.pytest.ini_options]
markers = [
"multiaccelerator: indicates that a test can make use of and possibly requires multiple accelerators",
"SlurmMultiNodeGpuTest: mark a test for Slurm multinode GPU nightly CI"
]
filterwarnings = [
"error",
# TODO(jakevdp): remove when array_api_tests stabilize
"default:.*not machine-readable.*:UserWarning",
"default:Special cases found for .* but none were parsed.*:UserWarning",
# jax.profiler imports tensorflow.python.profiler.trace internally, which
# will fail with python 3.12 and some versions of protobuf because the
# "error" entry above promotes DeprecationWarnings into errors. See also:
# https://github.com/protocolbuffers/protobuf/issues/12186#issuecomment-1745679358
"ignore:Type google\\._upb\\._message\\.(Scalar|Message)MapContainer uses PyType_Spec with a metaclass that has custom tp_new\\. This is deprecated and will no longer be allowed in Python 3\\.14\\.:DeprecationWarning",
# Protobuf version in TF releases may lag behind the ones in code.
"ignore:Protobuf gencode version \\d+\\.\\d+\\.\\d is exactly one major version older than the runtime version \\d+\\.\\d+\\.\\d at tensorflow/fore/framework/attr_value\\.proto\\. Please update the gencode to avoid compatibility violations in the next runtime release\\.:UserWarning",
# TODO(b/401588349): Remove this once transparent hugepages are enabled.
"ignore:Transparent hugepages",
# NOTE: this is probably not where you want to add code to suppress a
# warning. Only pytest tests look at this list, whereas Bazel tests also
# check for warnings and do not check this list. Most likely, you should
# add a @jtu.ignore_warning decorator to your test instead.
]
doctest_optionflags = [
"NUMBER",
"NORMALIZE_WHITESPACE"
]
addopts = "--doctest-glob='*.rst' --ignore='examples/ffi' --import-mode=importlib"
[tool.ruff]
preview = true
exclude = [
".git",
"build",
"__pycache__",
]
line-length = 80
indent-width = 2
target-version = "py311"
[tool.ruff.lint]
ignore = [
# Unnecessary collection call
"C408",
# Unnecessary map usage
"C417",
# Unnecessary dict comprehension for iterable
"C420",
# Object names too complex
"C901",
# Local variable is assigned to but never used
"F841",
# Class could be dataclass or namedtuple
"B903",
# Raise with from clause inside except block
"B904",
# Zip without explicit strict parameter
"B905",
]
select = [
"B9",
"C",
"F",
"W",
"YTT",
"ASYNC",
"E101",
"E112",
"E113",
"E115",
"E117",
"E225",
"E227",
"E228",
]
[tool.ruff.lint.mccabe]
max-complexity = 18
[tool.ruff.lint.per-file-ignores]
# F811: Redefinition of unused name.
# F821: Undefined name.
"docs/autodidax.py" = ["F811"]
"docs/pallas/tpu/matmul.ipynb" = ["F811"]
"docs/pallas/tpu/distributed.ipynb" = ["F811"]
"docs/pallas/quickstart.ipynb" = ["F811"]
"docs/notebooks/autodiff_cookbook.ipynb" = ["F811", "F821"]
"docs/notebooks/autodiff_remat.ipynb" = ["F811", "F821"]
"docs/notebooks/Custom_derivative_rules_for_Python_code.ipynb" = ["F811"]
"docs/jep/9407-type-promotion.ipynb" = ["F811"]
"docs/autodidax.ipynb" = ["F811"]