From 9cd39b08b78ad74a137604b5ca0c63ee2b1f6e66 Mon Sep 17 00:00:00 2001 From: lanluo-nvidia Date: Tue, 5 Aug 2025 20:37:01 -0700 Subject: [PATCH] remove breakpoint() --- tests/py/dynamo/models/test_models_export.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/py/dynamo/models/test_models_export.py b/tests/py/dynamo/models/test_models_export.py index 53be48879a..66f7a1821b 100644 --- a/tests/py/dynamo/models/test_models_export.py +++ b/tests/py/dynamo/models/test_models_export.py @@ -413,7 +413,6 @@ def calibrate_loop(model): mtq.quantize(model, quant_cfg, forward_loop=calibrate_loop) # model has INT8 qdq nodes at this point output_pyt = model(input_tensor) - breakpoint() with torch.no_grad(): with export_torch_mode(): exp_program = torch.export.export(model, (input_tensor,), strict=False)