[fx] fixed apex normalization patch exception (#1352)

This commit is contained in:
Frank Lee
2022-07-21 15:29:11 +08:00
committed by GitHub
parent ce470ba37e
commit 274c1a3b5f

View File

@@ -26,5 +26,5 @@ try:
meta_patched_module.register(apex.normalization.FusedRMSNorm)(torch_nn_normalize)
meta_patched_module.register(apex.normalization.MixedFusedLayerNorm)(torch_nn_normalize)
meta_patched_module.register(apex.normalization.MixedFusedRMSNorm)(torch_nn_normalize)
except ImportError:
except (ImportError, AttributeError):
pass