You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am installing the package on Mac using M1 chip. I am using python=3.8.10 and torch=2.0.1. I tried to install pytorch-fast-transformers using pip install --user pytorch-fast-transforms or building from the source. However, when I tried from fast_transformers.attention import AttentionLayer, it always gives me this error:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/Users/xiaoqi/Documents/projects/proj_mol2mof/MoLFORMER/fast-transformers/fast_transformers/attention/__init__.py", line 13, in <module>
from .causal_linear_attention import CausalLinearAttention
File "/Users/xiaoqi/Documents/projects/proj_mol2mof/MoLFORMER/fast-transformers/fast_transformers/attention/causal_linear_attention.py", line 15, in <module>
from ..causal_product import causal_dot_product
File "/Users/xiaoqi/Documents/projects/proj_mol2mof/MoLFORMER/fast-transformers/fast_transformers/causal_product/__init__.py", line 9, in <module>
from .causal_product_cpu import causal_dot_product as causal_dot_product_cpu, \
ImportError: dlopen(/Users/xiaoqi/Documents/projects/proj_mol2mof/MoLFORMER/fast-transformers/fast_transformers/causal_product/causal_product_cpu.cpython-38-darwin.so, 0x0002): symbol not found in flat namespace '___kmpc_for_static_fini'
Could you please help me to have a look at what the problem could be? Thank you in advance!
The text was updated successfully, but these errors were encountered:
Hi, I am installing the package on Mac using M1 chip. I am using
python=3.8.10
andtorch=2.0.1
. I tried to installpytorch-fast-transformers
usingpip install --user pytorch-fast-transforms
or building from the source. However, when I triedfrom fast_transformers.attention import AttentionLayer
, it always gives me this error:Could you please help me to have a look at what the problem could be? Thank you in advance!
The text was updated successfully, but these errors were encountered: