We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97cfad0 commit 2380fdaCopy full SHA for 2380fda
cuda_bindings/setup.py
@@ -150,7 +150,7 @@ def parse_headers(header_dict):
150
"\\(enum ": "(",
151
# Since we only support 64 bit architectures, we can inline the sizeof(T*) to 8 and then compute the
152
# result in Python. The arithmetic expression is preserved to help with clarity and understanding
153
- r'char reserved\[52 - sizeof\(CUcheckpointGpuPair \*\)\];' : rf'char reserved[{52 - 8}];',
+ r"char reserved\[52 - sizeof\(CUcheckpointGpuPair \*\)\];": rf"char reserved[{52 - 8}];",
154
}
155
156
print(f'Parsing headers in "{include_path_list}" (Caching = {PARSER_CACHING})')
0 commit comments