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 0fe9c04 commit b9c519aCopy full SHA for b9c519a
setup.py
@@ -124,6 +124,9 @@ def build_extension(self, ext: CMakeExtension) -> None:
124
125
def main():
126
cwd = os.path.dirname(os.path.abspath(__file__))
127
+ subprocess.run(
128
+ ["nvcc", "--version"], cwd=cwd, check=True
129
+ )
130
with open(os.path.join(cwd, "README.md"), encoding="utf-8") as f:
131
long_description = f.read()
132
0 commit comments