cli/gpu_check.py [91:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  def __init__(
      self,
      machine_type: str,
      partition: str,
      nodes: list[str],
      dry_run: bool = False,
  ):
    super().__init__(
        name=NAME,
        description=_DESCRIPTION,
        machine_type=machine_type,
        check_flag=self._check_flag,
        partition=partition,
        nodes=nodes,
        supported_machine_types=self._SUPPORTED_MACHINE_TYPES,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cli/nccl_check.py [99:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  def __init__(
      self,
      machine_type: str,
      partition: str,
      nodes: list[str],
      dry_run: bool = False,
  ):
    super().__init__(
        name=NAME,
        description=_DESCRIPTION,
        machine_type=machine_type,
        check_flag=self._check_flag,
        partition=partition,
        nodes=nodes,
        supported_machine_types=self._SUPPORTED_MACHINE_TYPES,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



