Home
last modified time | relevance | path

Searched refs:run_script_path (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/tools/asuite/aidegen/lib/
H A Dide_util.py521 run_script_path = os.path.realpath(self._installed_path)
522 app_folder = self._get_application_path(run_script_path)
539 ide_common_util.get_run_ide_cmd(run_script_path, '',
582 def _get_application_path(run_script_path): argument
596 if not run_script_path or not os.path.isfile(run_script_path):
598 index = str.find(run_script_path, 'intellij-')
599 target_path = None if index == -1 else run_script_path[index:]
600 if not target_path or '-' not in run_script_path:
/aosp_15_r20/external/pytorch/torch/distributed/
H A Drun.py854 cmd = run_script_path
877 def run_script_path(training_script: str, *training_script_args: str): function