We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c5f0e6 commit 9877c9dCopy full SHA for 9877c9d
install_test/check_macros/check_macros.py
@@ -111,7 +111,13 @@ def prepare_commands(args):
111
macros_with_diff = macros_with - macros_without
112
macros_without_diff = macros_without - macros_with
113
114
- if macros_without_diff:
+ # to be removed as soon as possible
115
+ whitelist_macros = {
116
+ "#define KOKKOS_IMPL_PUBLIC_INCLUDE ",
117
+ "#define KOKKOS_IMPL_PUBLIC_INCLUDE_PROFILING_SCOPEDREGION ",
118
+ }
119
+
120
+ if macros_without_diff - whitelist_macros:
121
print(macros_without_diff)
122
raise ValueError("Set should be empty")
123
0 commit comments