(self)
| 98 | |
| 99 | @ property |
| 100 | def quantize_policy(self) -> QuantizationPolicy: |
| 101 | return QuantizationPolicy( |
| 102 | QuantizationProperty.ASYMMETRICAL + |
| 103 | QuantizationProperty.LINEAR + |
| 104 | QuantizationProperty.PER_TENSOR |
| 105 | ) |
| 106 | |
| 107 | @ property |
| 108 | def rounding_policy(self) -> RoundingPolicy: |
nothing calls this directly
no test coverage detected