Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ See [the NGC documentation](https://docs.nvidia.com/deeplearning/frameworks/pyto

## From Source

To install Apex from source, we recommend using the nightly Pytorch obtainable from https://github.com/pytorch/pytorch.
To install APEX from source, we recommend using the nightly PyTorch obtainable from https://github.com/pytorch/pytorch.

The latest stable release obtainable from https://pytorch.org should also work.

Expand Down
6 changes: 6 additions & 0 deletions apex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
import torch


try:
from .version import __version__ # noqa: F401
except ImportError:
pass


__all__ = ["amp", "fp16_utils", "optimizers", "normalization", "transformer"]


Expand Down
9 changes: 3 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
cxxfilt>=0.2.0
tqdm>=4.28.1
numpy>=1.15.3
PyYAML>=5.1
pytest>=3.5.1
packaging>=14.0
packaging>=20.6
torch
numpy
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-r requirements.txt
flake8>=3.7.9
Sphinx>=3.0.3
Sphinx>=3.0.3
Loading