mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Pull Request resolved: https://github.com/pytorch/pytorch/pull/144548 Approved by: https://github.com/ezyang
20 lines
365 B
Python
20 lines
365 B
Python
# flake8: noqa: F401
|
|
r"""QAT Dynamic Modules.
|
|
|
|
This package is in the process of being deprecated.
|
|
Please, use `torch.ao.nn.qat.dynamic` instead.
|
|
"""
|
|
|
|
from torch.nn.qat import dynamic, modules # noqa: F403
|
|
from torch.nn.qat.modules import * # noqa: F403
|
|
|
|
|
|
__all__ = [
|
|
"Linear",
|
|
"Conv1d",
|
|
"Conv2d",
|
|
"Conv3d",
|
|
"Embedding",
|
|
"EmbeddingBag",
|
|
]
|