Skip to content

Commit e9860bb

Browse files
authored
Revert "[QAT Lora 6/N] torch.compile for reference implementation (#3… (#3349)
### Changes This reverts commit 23803a3. ### Reason for changes #3343 introduced degradation in tests on Windows https://github.com/openvinotoolkit/nncf/actions/runs/13912395232
1 parent 833f13c commit e9860bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nncf/torch/quantization/reference.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,5 +121,5 @@ def tune_range(
121121

122122
class ReferenceQuantizedFunctions:
123123
_executor = ReferenceQuantize(backend_type=ReferenceBackendType.TORCH)
124-
Quantize_forward = torch.compile(_executor.forward)
125-
Quantize_backward = torch.compile(_executor.backward)
124+
Quantize_forward = _executor.forward
125+
Quantize_backward = _executor.backward

0 commit comments

Comments
 (0)