File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
tests/py/dynamo/automatic_plugin Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 12
12
from ..conversion .harness import DispatchTestCase
13
13
14
14
if importlib .util .find_spec ("flashinfer" ):
15
- import flashinfer
15
+ # flashinfer has been impacted by torch upstream change: https://github.com/pytorch/pytorch/commit/660b0b8128181d11165176ea3f979fa899f24db1
16
+ # got ImportError: cannot import name '_get_pybind11_abi_build_flags' from 'torch.utils.cpp_extension'
17
+ # import flashinfer
16
18
17
19
18
- # flashinfer has been impacted by torch upstream change: https://github.com/pytorch/pytorch/commit/660b0b8128181d11165176ea3f979fa899f24db1
19
- # got ImportError: cannot import name '_get_pybind11_abi_build_flags' from 'torch.utils.cpp_extension'
20
- @unittest .skip ("Not Available" )
21
20
@torch .library .custom_op ("flashinfer::rmsnorm" , mutates_args = ()) # type: ignore[misc]
22
21
def flashinfer_rmsnorm (
23
22
input : torch .Tensor , weight : torch .Tensor , eps : float = 1e-6
You can’t perform that action at this time.
0 commit comments