Skip to content

Commit

Permalink
[chore] Fix docs build by updating the numpy intersphinx mapping (#929)
Browse files Browse the repository at this point in the history
* update intersphinx mapping for numpy

* update intersphinx mapping for numpy

* update pytorch mapping and disable test
  • Loading branch information
anj-s committed Feb 8, 2022
1 parent 89e1ae5 commit 7202115
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@

intersphinx_mapping = {
"python": ("https://docs.python.org/3.6", None),
"numpy": ("https://docs.scipy.org/doc/numpy/", None),
"torch": ("https://pytorch.org/docs/master/", None),
"numpy": ("https://numpy.org/doc/stable/", None),
"torch": ("https://pytorch.org/docs/stable/", None),
}
# -------------------------

Expand Down
1 change: 1 addition & 0 deletions tests/nn/data_parallel/test_fsdp.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@ def _get_model(self, group, config):
return FullyShardedDataParallel(model, group, **config)


@pytest.mark.skip(reason="Disable flaky test that is not reproducible locally.")
class TestSerialization(DistributedTest):
@parameterized.expand([[False, False], [True, False], [True, True], [False, True]], name_func=rename_test)
def test_pickle(self, mixed_precision, cpu_offload):
Expand Down

0 comments on commit 7202115

Please sign in to comment.