You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Using default quantizer in the arm backend. This quantizer is planned to be replaced by the composable quantizer implementation in the future, see https://github.com/pytorch/executorch/issues/17701"
524
+
"Using deprecated legacy quantizer implementation in the arm backend. Setting use_composable_quantizer=False will be removed in two minor releases. See https://github.com/pytorch/executorch/issues/17701"
reporter=QuantizerReporter(self.quantizers, "FINAL QUANTIZATION REPORT")
1136
1208
model=super().annotate(model)
@@ -1284,20 +1356,25 @@ class EthosUQuantizer(TOSAQuantizer):
1284
1356
"""Quantizer supported by the Arm Ethos-U backend.
1285
1357
1286
1358
.. warning::
1287
-
Setting ``use_composable_quantizer=True`` enables an experimental API
1288
-
surface that may change without notice.
1359
+
The composable quantizer is now the default implementation. Setting
1360
+
``use_composable_quantizer=False`` is deprecated and will be removed in
1361
+
two minor releases.
1289
1362
1290
1363
Args:
1291
1364
compile_spec (EthosUCompileSpec): Backend compile specification for
1292
1365
Ethos-U targets.
1293
-
use_composable_quantizer (bool): Whether to use the composable quantizer implementation. See https://github.com/pytorch/executorch/issues/17701" for details.
1366
+
use_composable_quantizer (bool): Whether to use the composable
1367
+
quantizer implementation. Setting this to ``False`` is deprecated
@@ -1306,19 +1383,24 @@ class VgfQuantizer(TOSAQuantizer):
1306
1383
"""Quantizer supported by the Arm Vgf backend.
1307
1384
1308
1385
.. warning::
1309
-
Setting ``use_composable_quantizer=True`` enables an experimental API
1310
-
surface that may change without notice.
1386
+
The composable quantizer is now the default implementation. Setting
1387
+
``use_composable_quantizer=False`` is deprecated and will be removed in
1388
+
two minor releases.
1311
1389
1312
1390
Args:
1313
1391
compile_spec (VgfCompileSpec): Backend compile specification for Vgf
1314
1392
targets.
1315
-
use_composable_quantizer (bool): Whether to use the composable quantizer implementation. See https://github.com/pytorch/executorch/issues/17701" for details.
1393
+
use_composable_quantizer (bool): Whether to use the composable
1394
+
quantizer implementation. Setting this to ``False`` is deprecated
0 commit comments