rnn.py 769 B

1234567891011121314151617
  1. # flake8: noqa: F401
  2. r"""Quantized Reference Modules
  3. This module is in the process of migration to
  4. `torch/ao/nn/quantized/reference`, and is kept here for
  5. compatibility while the migration process is ongoing.
  6. If you are adding a new entry/functionality, please, add it to the
  7. appropriate file under the `torch/ao/nn/quantized/reference`,
  8. while adding an import statement here.
  9. """
  10. from torch.ao.nn.quantized.reference.modules.rnn import RNNCellBase
  11. from torch.ao.nn.quantized.reference.modules.rnn import RNNCell
  12. from torch.ao.nn.quantized.reference.modules.rnn import LSTMCell
  13. from torch.ao.nn.quantized.reference.modules.rnn import GRUCell
  14. from torch.ao.nn.quantized.reference.modules.rnn import RNNBase
  15. from torch.ao.nn.quantized.reference.modules.rnn import LSTM