• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# flake8: noqa: F401
2r"""QAT Dynamic Modules.
3
4This package is in the process of being deprecated.
5Please, use `torch.ao.nn.qat.dynamic` instead.
6"""
7from torch.nn.qat import dynamic, modules  # noqa: F403
8from torch.nn.qat.modules import *  # noqa: F403
9
10
11__all__ = [
12    "Linear",
13    "Conv1d",
14    "Conv2d",
15    "Conv3d",
16    "Embedding",
17    "EmbeddingBag",
18]
19