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

pull/1353/head
Frank Lee 2022-07-21 15:29:11 +08:00 committed by GitHub
parent ce470ba37e
commit 274c1a3b5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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