__init__.pyi 321 Bytes
Newer Older
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.

from typing import Any
from torch import Tensor

def get_rank(group: Any) -> int: ...

def get_world_size(group: Any) -> int: ...

def broadcast(tensor: Tensor, src: Any, group: Any, async_op: Any = False): ...

class group(object):
    WORLD: Any