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
Same problem here. Fixed by modifying the fused_layer_norm.py in Apex.
Change line 412 and 316 If statement as follows:
if torch.jit.is_tracing() or torch.jit.is_scripting() or (hasattr(torch.compiler, 'is_compiling') and torch.compiler.is_compiling()) or not input.is_cuda:
AttributeError: module 'torch.compiler' has no attribute 'is_compiling'
The text was updated successfully, but these errors were encountered: