Browse Source

[extension] hotfix compile check (#6099)

pull/6100/head
Hongxin Liu 4 weeks ago committed by GitHub
parent
commit
80a8ca916a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      extensions/cpp_extension.py
  2. 2
      extensions/cuda_extension.py

2
extensions/cpp_extension.py

@ -79,7 +79,7 @@ class _CppExtension(_Extension):
# check if the kernel has been built # check if the kernel has been built
compiled_before = False compiled_before = False
kernel_file_path = build_directory.joinpath(f"{self.name}.o") kernel_file_path = build_directory.joinpath(f"{self.name}.so")
if kernel_file_path.exists(): if kernel_file_path.exists():
compiled_before = True compiled_before = True

2
extensions/cuda_extension.py

@ -74,7 +74,7 @@ class _CudaExtension(_CppExtension):
# check if the kernel has been built # check if the kernel has been built
compiled_before = False compiled_before = False
kernel_file_path = build_directory.joinpath(f"{self.name}.o") kernel_file_path = build_directory.joinpath(f"{self.name}.so")
if kernel_file_path.exists(): if kernel_file_path.exists():
compiled_before = True compiled_before = True

Loading…
Cancel
Save