Skip to content

Commit 52199e0

Browse files
committedNov 6, 2020
Typos for explanation
Typos
1 parent e2280e3 commit 52199e0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ BlueFog
1515

1616
<p align="center"><img src="https://user-images.githubusercontent.com/65107588/82258821-62d66b80-990f-11ea-9393-bf5456af67e6.png" alt="Logo" width="450"/></p>
1717

18-
BlueFog is a high-performance distributed training framework for PyTorch built with **decentralized optimization** algorithms. The goal of Bluefog is to make decentralized algorithms easy to use, fault-tolerant, friendly to heterogeneous environment, and even faster than training frameworks built with parameter server, or ring-allreduce.
18+
BlueFog is a high-performance distributed training framework built with **decentralized optimization** algorithms. The goal of Bluefog is to make decentralized algorithms easy to use, fault-tolerant, friendly to heterogeneous environment, and even faster than training frameworks built with parameter server, or ring-allreduce.
1919

2020
Performance
2121
-----------

‎bluefog/common/basics.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def is_topo_weighted(self) -> bool:
150150
return self._is_topo_weighted
151151

152152
def load_topology(self) -> networkx.DiGraph:
153-
"""A funnction that return the virtual topology MPI used.
153+
"""A funnction that returns the virtual topology MPI used.
154154
155155
Returns:
156156
topology: networkx.DiGraph.
@@ -187,7 +187,7 @@ def out_neighbor_ranks(self) -> List[int]:
187187

188188
def set_topology(self, topology: Optional[networkx.DiGraph] = None,
189189
is_weighted: bool = False) -> bool:
190-
"""A funnction that set the virtual topology MPI used.
190+
"""A funnction that sets the virtual topology MPI used.
191191
192192
Args:
193193
Topo: A networkx.DiGraph object to decide the topology. If not provided

‎bluefog/torch/mpi_ops.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1106,8 +1106,8 @@ def win_get_nonblocking(name: str, src_weights: Optional[Dict[int, float]] = Non
11061106
acquired.
11071107
11081108
Returns:
1109-
A handle to the win_get operation that can be used with `poll()` or
1110-
`synchronize()`.
1109+
A handle to the win_get operation that can be used with `win_poll()` or
1110+
`win_wait()`.
11111111
"""
11121112
function = "bluefog_torch_win_get"
11131113
src_weights = ({rank: 1.0 for rank in in_neighbor_ranks()}

0 commit comments

Comments
 (0)