__init__.py 279 B

12345678910111213
  1. from .modules import * # noqa: F403
  2. # to ensure customers can use the module below
  3. # without importing it directly
  4. import torch.nn.intrinsic.quantized.dynamic
  5. __all__ = [
  6. 'BNReLU2d',
  7. 'BNReLU3d',
  8. 'ConvReLU1d',
  9. 'ConvReLU2d',
  10. 'ConvReLU3d',
  11. 'LinearReLU',
  12. ]