MCPcopy
hub / github.com/OpenPPL/ppq / copy

Method copy

ppq/core/data.py:217–222  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

215 return len(self.output_metas)
216
217 def copy(self):
218 return OperationMeta(
219 input_metas = [meta.copy() for meta in self.input_metas],
220 output_metas = [meta.copy() for meta in self.output_metas],
221 operation_name=self.operation_name, operation_type=self.operation_type,
222 executing_order=self.executing_order)
223
224
225def convert_any_to_python_primary_type(

Callers

nothing calls this directly

Calls 2

OperationMetaClass · 0.85
copyMethod · 0.45

Tested by

no test coverage detected