activation_sig.cc 5.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#include "paddle/phi/core/compat/op_utils.h"

namespace phi {

19 20 21 22 23 24 25
#define DefineActGradDepXOpArgMap(func_name, op_name, attrs) \
  KernelSignature func_name##GradOpArgumentMapping(          \
      const ArgumentMappingContext& ctx) {                   \
    return KernelSignature(op_name "_grad",                  \
                           {"X", GradVarName("Out")},        \
                           {attrs},                          \
                           {GradVarName("X")});              \
26 27
  }

28 29 30 31 32 33 34
#define DefineActGradDepOutOpArgMap(func_name, op_name, attrs) \
  KernelSignature func_name##GradOpArgumentMapping(            \
      const ArgumentMappingContext& ctx) {                     \
    return KernelSignature(op_name "_grad",                    \
                           {"Out", GradVarName("Out")},        \
                           {attrs},                            \
                           {GradVarName("X")});                \
35 36
  }

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
#define comma ,

DefineActGradDepXOpArgMap(Cos, "cos", );                           // NOLINT
DefineActGradDepXOpArgMap(Tan, "tan", );                           // NOLINT
DefineActGradDepXOpArgMap(Acos, "acos", );                         // NOLINT
DefineActGradDepXOpArgMap(Sin, "sin", );                           // NOLINT
DefineActGradDepXOpArgMap(Asin, "asin", );                         // NOLINT
DefineActGradDepXOpArgMap(Atan, "atan", );                         // NOLINT
DefineActGradDepXOpArgMap(Sinh, "sinh", );                         // NOLINT
DefineActGradDepXOpArgMap(Cosh, "cosh", );                         // NOLINT
DefineActGradDepXOpArgMap(Asinh, "asinh", );                       // NOLINT
DefineActGradDepXOpArgMap(Acosh, "acosh", );                       // NOLINT
DefineActGradDepXOpArgMap(Atanh, "atanh", );                       // NOLINT
DefineActGradDepXOpArgMap(BRelu, "brelu", "t_min" comma "t_max");  // NOLINT
DefineActGradDepXOpArgMap(LeakyRelu, "leaky_relu", "alpha");       // NOLINT
DefineActGradDepXOpArgMap(ThresholdedRelu,
                          "thresholded_relu",
                          "threshold");  // NOLINT

DefineActGradDepOutOpArgMap(Relu, "relu", );  // NOLINT
DefineActGradDepOutOpArgMap(Tanh, "tanh", );  // NOLINT

59 60 61 62 63
KernelSignature ReluDoubleGradOpArgumentMapping(
    const ArgumentMappingContext& ctx) {
  return KernelSignature("relu_double_grad", {"Out", "DDX"}, {}, {"DDOut"});
}

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
KernelSignature TanhDoubleGradOpArgumentMapping(
    const ArgumentMappingContext& ctx) {
  return KernelSignature(
      "tanh_double_grad", {"Out", "DDX", "DOut"}, {}, {"DOutNew", "DDOut"});
}

KernelSignature TanhTripleGradOpArgumentMapping(
    const ArgumentMappingContext& ctx) {
  return KernelSignature("tanh_triple_grad",
                         {"Out", "DDX", "DOut", "D_DDOut", "D_DOut_New"},
                         {},
                         {"D_OutNew", "D_DOut", "D_DDx"});
}

KernelSignature LeakyReluDoubleGradOpArgumentMapping(
    const ArgumentMappingContext& ctx) {
  return KernelSignature(
      "leaky_relu_double_grad", {"X", "DDX"}, {"alpha"}, {"DDOut"});
}

KernelSignature LeakyReluOpArgumentMapping(const ArgumentMappingContext& ctx) {
  return KernelSignature("leaky_relu", {"X"}, {"alpha"}, {"Out"});
}

88 89 90
}  // namespace phi

PD_REGISTER_BASE_KERNEL_NAME(relu_grad_grad, relu_double_grad);
91 92
PD_REGISTER_BASE_KERNEL_NAME(tanh_grad_grad, tanh_double_grad);
PD_REGISTER_BASE_KERNEL_NAME(leaky_relu_grad_grad, leaky_relu_double_grad);
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107

PD_REGISTER_ARG_MAPPING_FN(cos_grad, phi::CosGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(tan_grad, phi::TanGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(acos_grad, phi::AcosGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(sin_grad, phi::SinGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(asin_grad, phi::AsinGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(atan_grad, phi::AtanGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(sinh_grad, phi::SinhGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(cosh_grad, phi::CoshGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(asinh_grad, phi::AsinhGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(acosh_grad, phi::AcoshGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(atanh_grad, phi::AtanhGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(relu_grad, phi::ReluGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(relu_grad_grad,
                           phi::ReluDoubleGradOpArgumentMapping);
108 109 110 111 112 113 114 115 116 117 118 119 120
PD_REGISTER_ARG_MAPPING_FN(tanh_grad, phi::TanhGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(tanh_grad_grad,
                           phi::TanhDoubleGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(tanh_triple_grad,
                           phi::TanhTripleGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(brelu_grad, phi::BReluGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(leaky_relu, phi::LeakyReluOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(leaky_relu_grad,
                           phi::LeakyReluGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(leaky_relu_grad_grad,
                           phi::LeakyReluDoubleGradOpArgumentMapping);
PD_REGISTER_ARG_MAPPING_FN(thresholded_relu_grad,
                           phi::ThresholdedReluGradOpArgumentMapping);