-
Notifications
You must be signed in to change notification settings - Fork 207
[pre-commit.ci] pre-commit autoupdate #4365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
updates: - [github.com/pre-commit/mirrors-clang-format: v19.1.6 → v20.1.0](pre-commit/mirrors-clang-format@v19.1.6...v20.1.0) - [github.com/astral-sh/ruff-pre-commit: v0.8.6 → v0.11.4](astral-sh/ruff-pre-commit@v0.8.6...v0.11.4) - [github.com/codespell-project/codespell: v2.3.0 → v2.4.1](codespell-project/codespell@v2.3.0...v2.4.1) - [github.com/pre-commit/mirrors-mypy: v1.14.1 → v1.15.0](pre-commit/mirrors-mypy@v1.14.1...v1.15.0)
pre-commit.ci autofix |
/ok to test |
/ok to test |
🟨 CI finished in 1h 53m: Pass: 99%/174 | Total: 3d 20h | Avg: 31m 51s | Max: 1h 32m | Hits: 48%/268373
|
Project | |
---|---|
+/- | CCCL Infrastructure |
+/- | libcu++ |
+/- | CUB |
+/- | Thrust |
+/- | CUDA Experimental |
stdpar | |
+/- | python |
CCCL C Parallel Library | |
+/- | Catch2Helper |
Modifications in project or dependencies?
Project | |
---|---|
+/- | CCCL Infrastructure |
+/- | libcu++ |
+/- | CUB |
+/- | Thrust |
+/- | CUDA Experimental |
+/- | stdpar |
+/- | python |
+/- | CCCL C Parallel Library |
+/- | Catch2Helper |
🏃 Runner counts (total jobs: 174)
# | Runner |
---|---|
121 | linux-amd64-cpu16 |
15 | windows-amd64-cpu16 |
12 | linux-amd64-gpu-rtx2080-latest-1 |
12 | linux-arm64-cpu16 |
6 | linux-amd64-gpu-rtxa6000-latest-1 |
5 | linux-amd64-gpu-h100-latest-1 |
3 | linux-amd64-gpu-rtx4090-latest-1 |
🟩 CI finished in 4h 35m: Pass: 100%/174 | Total: 3d 21h | Avg: 32m 17s | Max: 1h 32m | Hits: 48%/268373
|
Project | |
---|---|
+/- | CCCL Infrastructure |
+/- | libcu++ |
+/- | CUB |
+/- | Thrust |
+/- | CUDA Experimental |
stdpar | |
+/- | python |
CCCL C Parallel Library | |
+/- | Catch2Helper |
Modifications in project or dependencies?
Project | |
---|---|
+/- | CCCL Infrastructure |
+/- | libcu++ |
+/- | CUB |
+/- | Thrust |
+/- | CUDA Experimental |
+/- | stdpar |
+/- | python |
+/- | CCCL C Parallel Library |
+/- | Catch2Helper |
🏃 Runner counts (total jobs: 174)
# | Runner |
---|---|
121 | linux-amd64-cpu16 |
15 | windows-amd64-cpu16 |
12 | linux-amd64-gpu-rtx2080-latest-1 |
12 | linux-arm64-cpu16 |
6 | linux-amd64-gpu-rtxa6000-latest-1 |
5 | linux-amd64-gpu-h100-latest-1 |
3 | linux-amd64-gpu-rtx4090-latest-1 |
@@ -427,12 +427,12 @@ public: | |||
|
|||
int thread_idx_in_thread_group_being_merged = mask & linear_tid; | |||
|
|||
int diag = (::cuda::std::min)(valid_items, ITEMS_PER_THREAD * thread_idx_in_thread_group_being_merged); | |||
int diag = (::cuda::std::min) (valid_items, ITEMS_PER_THREAD * thread_idx_in_thread_group_being_merged); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I find space insertion by the linter between (::cuda::std::min)
and its arguments questionable.
We do not usually write foo (x)
, but foo(x)
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True but its too common and unobstrusive to stop the update
updates: