Commit 3939e719 authored by wenjh's avatar wenjh
Browse files

Fix import pytorch error


Signed-off-by: wenjh's avatarwenjh <wenjh@sugon.com>
parent 3b1f30a9
...@@ -12,7 +12,10 @@ import transformer_engine.common ...@@ -12,7 +12,10 @@ import transformer_engine.common
try: try:
from . import pytorch from . import pytorch
except ImportError as e: except ImportError as e:
pass try:
from . import pytorch
except ImportError as e:
pass
try: try:
from . import jax from . import jax
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment