You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 1.8 kB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Copyright 2019 Huawei Technologies Co., Ltd
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. """__init__"""
  15. from .equal import Equal
  16. from .equal import gpu_schedule_Equal
  17. from .tile import Tile
  18. from .tile import gpu_schedule_Tile
  19. from .cast import Cast
  20. from .cast import gpu_schedule_Cast
  21. from .relu6 import ReLU6, gpu_schedule_ReLU6
  22. from .relu6_grad import ReLU6Grad, gpu_schedule_ReLU6Grad
  23. from .squeeze import Squeeze, gpu_schedule_Squeeze
  24. from .squeeze_grad import SqueezeGrad, gpu_schedule_SqueezeGrad
  25. from .mean import SimpleMean, gpu_schedule_SimpleMean
  26. from .mean_grad import SimpleMeanGrad, gpu_schedule_SimpleMeanGrad
  27. from .mul import Mul, gpu_schedule_Mul
  28. from .hsigmoid import HSigmoid, gpu_schedule_HSigmoid
  29. from .hsigmoid_grad import HSigmoidGrad, gpu_schedule_HSigmoidGrad
  30. from .hswish import HSwish, gpu_schedule_HSwish
  31. from .hswish_grad import HSwishGrad, gpu_schedule_HSwishGrad
  32. from .logical_or import LogicalOr, gpu_schedule_LogicalOr
  33. from .logical_not import LogicalNot, gpu_schedule_LogicalNot
  34. from .logical_and import LogicalAnd, gpu_schedule_LogicalAnd
  35. from .sub import Sub, gpu_schedule_Sub
  36. from .less_equal import LessEqual, gpu_schedule_LessEqual
  37. from .notequal import NotEqual, gpu_schedule_NotEqual
  38. from .greater_equal import GreaterEqual, gpu_schedule_GreaterEqual