diff --git a/nncf/quantization/algorithms/min_max/torch_backend.py b/nncf/quantization/algorithms/min_max/torch_backend.py index 0a8fe5778c5..d31f4897641 100644 --- a/nncf/quantization/algorithms/min_max/torch_backend.py +++ b/nncf/quantization/algorithms/min_max/torch_backend.py @@ -315,6 +315,8 @@ def get_ignored_metatypes(model_type: ModelType, device: TargetDevice) -> List[O om.PTDivMetatype, om.PTMaxMetatype, om.PTSqueezeMetatype, + om.PTLayerNormMetatype, + om.PTModuleLayerNormMetatype, ] if device != TargetDevice.CPU_SPR: types.append(om.PTMulMetatype)