(self)
| 122 | return self._all(self.INT8_WEIGHTS, self.WEIGHTS_AND_ACTIVATIONS) |
| 123 | |
| 124 | def is_int4_weight_only(self): |
| 125 | return self._all(self.INT4_WEIGHTS, self.WEIGHTS_AND_ACTIVATIONS) |
| 126 | |
| 127 | def is_weight_only(self): |
| 128 | return self.is_int4_weight_only() or self.is_int8_weight_only() |