MCPcopy Create free account
hub / github.com/pytorch/executorch / pull

Method pull

backends/qualcomm/export_utils.py:478–483  ·  view source on GitHub ↗
(self, host_output_path, device_output_path=None, callback=None)

Source from the content-addressed store, hash-verified

476 )
477
478 def pull(self, host_output_path, device_output_path=None, callback=None):
479 if device_output_path is None:
480 device_output_path = self.output_folder
481 self._adb(["pull", "-a", device_output_path, host_output_path])
482 if callback:
483 callback()
484
485 def pull_etdump(self, output_path, callback=None):
486 self._adb(["pull", self.etdump_path, output_path])

Callers 15

verify_outputMethod · 0.95
executeFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95
mainFunction · 0.95

Calls 2

_adbMethod · 0.95
callbackFunction · 0.85

Tested by

no test coverage detected