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
Copy file name to clipboardExpand all lines: docs/quantization_support.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@ Quantized OPs that are natively not supported by PyTorch (and possibly TFLite).
27
27
|`pow`| / |
28
28
|`prelu`| / |
29
29
|`reciprocal`| / |
30
+
|`rsqrt`| / |
30
31
|`silu`| / |
31
32
|`sin`| / |
32
33
|`softmax`| / |
@@ -71,8 +72,10 @@ Quantized OPs that are natively not supported by PyTorch (and possibly TFLite).
71
72
|`sum`| For TFLiteConverter, set `rewrite_quantizable=True`|
72
73
|`torch.nn.GLU`| No action needed |
73
74
|`torch.nn.Hardsigmoid`| No action needed |
75
+
|`torch.nn.LayerNorm`| No action needed |
74
76
|`torch.nn.LogSoftmax`| For QATQuantizer/PostQuantizer, set `config={"set_quantizable_op_stats": True}`<br>For TFLiteConverter, set `rewrite_quantizable=True`|
75
77
|`torch.nn.PReLU`| No action needed |
78
+
|`torch.nn.RMSNorm`| No action needed |
76
79
|`torch.nn.SiLU`| No action needed |
77
80
|`torch.nn.Softmax`| For QATQuantizer/PostQuantizer, set `config={"set_quantizable_op_stats": True}`<br>For TFLiteConverter, set `rewrite_quantizable=True`|
78
81
|`truediv`| For TFLiteConverter, set `rewrite_quantizable=True`|
0 commit comments