-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [REF] Increase batch sizes, update results with more efficient matvecs * [ADD] Update benchmark figures * [CI] Migrate linter from `flake8` to `ruff` * [DOC] Update changelog * [FMT] Apply `black` * [CI] Ignore PLR2004 and PLW2901 * [CI] Use `ruff format` instead of `black` * [CI] Use ruff for import sorting * [CI] Minor fixes * [DOC] Update changelog * [REF] Delete noqas of PLR2004 * [CI] Small fix * [REF] Sort imports
- Loading branch information
Showing
29 changed files
with
162 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ src/ | |
.vscode/* | ||
.coverage | ||
.eggs | ||
**.DS_Store |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,6 @@ | ||
# Note: These tools do not yet support `pyproject.toml`, but these options | ||
# should be moved there once support is added. | ||
|
||
[flake8] | ||
select = B,C,E,F,P,W,B9 | ||
max-line-length = 88 | ||
max-complexity = 10 | ||
# E501 max-line-length (replaced by B950 (max-line-length + 10%)) | ||
# C408 use {} instead of dict() (ignored because pytorch uses dict) | ||
# E203 whitespace before : (not Black-compatible) | ||
# E231 missing whitespace after ',' | ||
# W291 trailing whitespace | ||
# W503 line break before binary operator | ||
# W504 line break after binary operator | ||
# B905 `zip()` without an explicit `strict=` parameter | ||
ignore = | ||
E501, | ||
C408, | ||
E203, | ||
E231, | ||
W291, | ||
W503, | ||
W504, | ||
B905, | ||
exclude = build, .git, docs/rtd, .eggs | ||
|
||
[darglint] | ||
docstring_style = google | ||
strictness = full |
Oops, something went wrong.