Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix: Another bugfix for torch.library #828

Merged
merged 1 commit into from
Feb 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions flashinfer/jit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,16 @@
from .utils import parallel_load_modules as parallel_load_modules

try:
from .. import _kernels, _kernels_sm90 # noqa: F401
from .. import flashinfer_kernels, flashinfer_kernels_sm90 # noqa: F401
from .aot_config import prebuilt_ops_uri as prebuilt_ops_uri

has_prebuilt_ops = True
except ImportError:
except ImportError as e:
if "undefined symbol" in str(e):
raise ImportError("Loading prebuilt ops failed.") from e

from .core import logger

logger.info("Prebuilt kernels not found, using JIT backend")
prebuilt_ops_uri = {}
has_prebuilt_ops = False