MCPcopy Create free account
hub / github.com/UbiquitousLearning/mllm / run

Method run

task.py:227–239  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

225 super().__init__(config)
226
227 def run(self):
228 logging.info("ADB push Task Start...")
229 files = self.config["files"]
230 push_path = self.config["to_path"]
231 for file in files:
232 command = [
233 "adb",
234 "push",
235 file,
236 push_path,
237 ]
238 logging.info(self.make_command_str(command))
239 throw_error_if_failed(os.system(self.make_command_str(command)))
240
241
242class ArmKernelBenchmarkTask(Task):

Callers

nothing calls this directly

Calls 2

throw_error_if_failedFunction · 0.85
make_command_strMethod · 0.80

Tested by

no test coverage detected