forked from kokkos/pykokkos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mypy.ini
99 lines (67 loc) · 1.98 KB
/
mypy.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[mypy]
warn_redundant_casts = True
warn_unused_ignores = True
show_error_codes = True
plugins = numpy.typing.mypy_plugin
# third party dependencies
[mypy-kokkos]
ignore_missing_imports = True
[mypy-pykokkos.bindings.bindings.libpykokkos]
ignore_missing_imports = True
# pykokkos modules with multiple errors
[mypy-pykokkos.interface.accumulator]
ignore_errors = True
[mypy-pykokkos.interface.views]
ignore_errors = True
[mypy-pykokkos.core.translators.functor]
ignore_errors = True
[mypy-pykokkos.core.translators.static]
ignore_errors = True
[mypy-pykokkos.core.compiler]
ignore_errors = True
[mypy-pykokkos.core.runtime]
ignore_errors = True
[mypy-pykokkos.core.cppast.decl]
ignore_errors = True
[mypy-pykokkos.kokkos_manager]
ignore_errors = True
[mypy-pykokkos.interface.execution_policy]
ignore_errors = True
[mypy-pykokkos.interface.parallel_dispatch]
ignore_errors = True
[mypy-pykokkos.interface.atomic.atomic_fetch_op]
ignore_errors = True
[mypy-pykokkos.interface]
ignore_errors = True
[mypy-pykokkos.core.run_debug]
ignore_errors = True
[mypy-pykokkos.core.cpp_setup]
ignore_errors = True
[mypy-pykokkos.core.visitors.visitors_util]
ignore_errors = True
[mypy-pykokkos.core.parsers.parser]
ignore_errors = True
[mypy-pykokkos.core.module_setup]
ignore_errors = True
[mypy-pykokkos.core.visitors.pykokkos_visitor]
ignore_errors = True
[mypy-pykokkos.core.visitors.parameter_visitor]
ignore_errors = True
[mypy-pykokkos.core.visitors.constructor_visitor]
ignore_errors = True
[mypy-pykokkos.core.visitors.workunit_visitor]
ignore_errors = True
[mypy-pykokkos.core.visitors.kokkosmain_visitor]
ignore_errors = True
[mypy-pykokkos.core.visitors.kokkosfunction_visitor]
ignore_errors = True
[mypy-pykokkos.core.visitors.classtype_visitor]
ignore_errors = True
[mypy-pykokkos.core.translators.members]
ignore_errors = True
[mypy-pykokkos.core.translators.bindings]
ignore_errors = True
[mypy-pykokkos.lib.ufuncs]
ignore_errors = True
[mypy-pykokkos.lib.info]
ignore_missing_imports = True