(self, op_def)
| 186 | return len(input0_dims) * self.get_data_bytes(mace_pb2.DT_INT32) * 2 |
| 187 | |
| 188 | def scratch_size_eltwise(self, op_def): |
| 189 | input0_dims = self.get_op_input_dims(op_def, 0) |
| 190 | return len(input0_dims) * self.get_data_bytes(mace_pb2.DT_INT32) * 3 |
| 191 | |
| 192 | def scratch_size_of_concat(self, op_def): |
| 193 | # On a 64bit operating system, one pointer data need 8 bytes |
nothing calls this directly
no test coverage detected