"cupyx/jit/cub.py" did not exist on "93bf084b3332e0d58c118590cc1722af6c810a8e"
.clang-format 996 Bytes
Newer Older
1
2
3
4
5
---
# See all possible options and defaults with:
# clang-format --style=llvm --dump-config
BasedOnStyle: LLVM
AccessModifierOffset: -4
6
AllowShortLambdasOnASingleLine: true
7
8
9
10
11
12
AlwaysBreakTemplateDeclarations: Yes
BinPackArguments: false
BinPackParameters: false
BreakBeforeBinaryOperators: All
BreakConstructorInitializers: BeforeColon
ColumnLimit: 99
13
14
CommentPragmas: 'NOLINT:.*|^ IWYU pragma:'
IncludeBlocks: Regroup
15
16
17
18
19
20
IndentCaseLabels: true
IndentPPDirectives: AfterHash
IndentWidth: 4
Language: Cpp
SpaceAfterCStyleCast: true
Standard: Cpp11
21
StatementMacros: ['PyObject_HEAD']
22
TabWidth: 4
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
IncludeCategories:
  - Regex:           '<pybind11/.*'
    Priority:        -1
  - Regex:           'pybind11.h"$'
    Priority:        1
  - Regex:           '^".*/?detail/'
    Priority:        1
    SortPriority:    2
  - Regex:           '^"'
    Priority:        1
    SortPriority:    3
  - Regex:           '<[[:alnum:]._]+>'
    Priority:        4
  - Regex:           '.*'
    Priority:        5
38
...