mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2026-05-14 14:06:53 +08:00
- Added Python samples for CUDA Python 1.0 release - Renamed top-level `Samples` directory to `cpp` to accommodate Python samples.
117 lines
2.5 KiB
YAML
117 lines
2.5 KiB
YAML
# Copyright (c) 2024, NVIDIA CORPORATION.
|
|
ci:
|
|
autofix_commit_msg: |
|
|
[pre-commit.ci] auto code formatting
|
|
autofix_prs: false
|
|
autoupdate_branch: ''
|
|
autoupdate_commit_msg: '[pre-commit.ci] pre-commit autoupdate'
|
|
autoupdate_schedule: quarterly
|
|
skip: []
|
|
submodules: false
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: end-of-file-fixer
|
|
exclude: |
|
|
(?x)^(
|
|
.*\.raw$|
|
|
.*\.bin$|
|
|
.*\.dat$|
|
|
.*\.nv12$|
|
|
data/.*|
|
|
Common/.*
|
|
)
|
|
files: |
|
|
(?x)^(
|
|
.*\.txt$|
|
|
.*\.md$|
|
|
.*\.cpp$|
|
|
.*\.cxx$|
|
|
.*\.hpp$|
|
|
.*\.h$|
|
|
.*\.cu$|
|
|
.*\.cuh$|
|
|
.*\.py$|
|
|
.*\.json$
|
|
)
|
|
- id: mixed-line-ending
|
|
exclude: |
|
|
(?x)^(
|
|
.*\.raw$|
|
|
.*\.bin$|
|
|
.*\.dat$|
|
|
.*\.nv12$|
|
|
data/.*|
|
|
Common/.*
|
|
)
|
|
files: |
|
|
(?x)^(
|
|
.*\.txt$|
|
|
.*\.md$|
|
|
.*\.cpp$|
|
|
.*\.cxx$|
|
|
.*\.hpp$|
|
|
.*\.h$|
|
|
.*\.cu$|
|
|
.*\.cuh$|
|
|
.*\.py$|
|
|
.*\.json$
|
|
)
|
|
- id: trailing-whitespace
|
|
exclude: |
|
|
(?x)^(
|
|
.*\.raw$|
|
|
.*\.bin$|
|
|
.*\.dat$|
|
|
.*\.nv12$|
|
|
data/.*|
|
|
Common/.*
|
|
)
|
|
files: |
|
|
(?x)^(
|
|
.*\.txt$|
|
|
.*\.md$|
|
|
.*\.cpp$|
|
|
.*\.cxx$|
|
|
.*\.hpp$|
|
|
.*\.h$|
|
|
.*\.cu$|
|
|
.*\.cuh$|
|
|
.*\.py$|
|
|
.*\.json$
|
|
)
|
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
rev: v19.1.6
|
|
hooks:
|
|
- id: clang-format
|
|
types_or: [file]
|
|
files: |
|
|
(?x)^(
|
|
^.*\.c$|
|
|
^.*\.cpp$|
|
|
^.*\.cu$|
|
|
^.*\.cuh$|
|
|
^.*\.cxx$|
|
|
^.*\.h$|
|
|
^.*\.hpp$|
|
|
^.*\.inl$|
|
|
^.*\.mm$
|
|
)
|
|
exclude: |
|
|
(?x)^(
|
|
Common/.*
|
|
)
|
|
args: ["-fallback-style=none", "-style=file", "-i"]
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.8.4
|
|
hooks:
|
|
- id: ruff
|
|
name: ruff lint
|
|
args: [--fix]
|
|
files: ^python/.*\.py$
|
|
- id: ruff-format
|
|
name: ruff format
|
|
files: ^python/.*\.py$
|