MCPcopy Create free account
hub / github.com/InternScience/SciReason / launch

Method launch

opencompass/runners/base.py:43–52  ·  view source on GitHub ↗

Launch multiple tasks. Args: tasks (list[dict]): A list of task configs, usually generated by Partitioner. Returns: list[tuple[str, int]]: A list of (task name, exit code).

(self, tasks: List[Dict[str, Any]])

Source from the content-addressed store, hash-verified

41
42 @abstractmethod
43 def launch(self, tasks: List[Dict[str, Any]]) -> List[Tuple[str, int]]:
44 """Launch multiple tasks.
45
46 Args:
47 tasks (list[dict]): A list of task configs, usually generated by
48 Partitioner.
49
50 Returns:
51 list[tuple[str, int]]: A list of (task name, exit code).
52 """
53
54 def summarize(self, status: List[Tuple[str, int]]) -> None:
55 """Summarize the results of the tasks.

Callers 1

__call__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected