(self)
| 2111 | return False |
| 2112 | |
| 2113 | def quantize_weights(self): |
| 2114 | print("Quantize weights") |
| 2115 | net = self._model |
| 2116 | for tensor in net.tensors: |
| 2117 | self.quantize_tensor(tensor) |
| 2118 | |
| 2119 | return False |
| 2120 | |
| 2121 | def quantize_large_tensor(self, tensor): |
| 2122 | if tensor.data_type == mace_pb2.DT_FLOAT: |
nothing calls this directly
no test coverage detected