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 1610adf commit 74800beCopy full SHA for 74800be
scripts/gen_coverage.py
@@ -109,7 +109,7 @@ def find_objects():
109
objects = []
110
sfx_regexp = sysconfig.get_config_var("EXT_SUFFIX").replace(".", r"\.")
111
regexp1 = re.compile(r"^_tensor_.*impl" + sfx_regexp)
112
- regexp2 = re.compile(r"^_device_queries" + sfx_regexp)
+ regexp2 = re.compile(r"^^_device_queries" + sfx_regexp)
113
114
def is_py_ext(fn):
115
return re.match(regexp1, fn) or re.match(regexp2, fn)
@@ -127,6 +127,7 @@ def is_py_ext(fn):
127
]
128
) or is_py_ext(file):
129
objects.extend(["-object", os.path.join(root, file)])
130
+ print("Using objects: ", objects)
131
return objects
132
133
objects = find_objects()
0 commit comments