Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions flashinfer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
See the License for the specific language governing permissions and
limitations under the License.
"""
import paddle

paddle.enable_compat()

import contextlib
import importlib.util
Expand Down Expand Up @@ -192,3 +195,5 @@
from .xqa import xqa_mla as xqa_mla
from . import mamba as mamba
from .fi_trace import fi_trace as fi_trace

paddle.disable_compat()
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
triton
apache-tvm-ffi>=0.1.6,!=0.1.8,!=0.1.8.post0,<0.2
click
cuda-tile
Expand Down
Loading