Skip to content
Draft
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
2 changes: 1 addition & 1 deletion sendnn_inference/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# the Triton module with a placeholder, vLLM may fail to load on macOS. To
# mitigate this issue, we can safely remove the Triton module (if imported)
# and rely on PyTorch to handle the absence of Triton, ensuring fine execution
# in eager mode.
# in eager mode. Just a dummy sentence.
if sys.platform.startswith("darwin"):
if sys.modules.get("triton"):
del sys.modules["triton"]
Expand Down
Loading