Home
last modified time | relevance | path

Searched refs:kPrimReluGrad (Results 1 – 12 of 12) sorted by relevance

/third_party/mindspore/mindspore/core/ops/grad/
Drelu_grad.h32 ReLUGrad() : PrimitiveC(prim::kPrimReluGrad->name()) { InitIOName({"x"}, {"output"}); } in ReLUGrad()
Drelu_grad.cc72 REGISTER_PRIMITIVE_EVAL_IMPL(ReLUGrad, prim::kPrimReluGrad, ReLUGradInfer, nullptr, true);
/third_party/mindspore/mindspore/ccsrc/runtime/device/gpu/
Dkernel_info_setter.h59 {prim::kPrimReluGrad->name(), {{0, 1}, {0}}},
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/gpu/
Dbatch_norm_relu_grad_fusion.cc32 VectorRef relu_grad = VectorRef({prim::kPrimReluGrad, dy_, y_}); in DefinePattern()
Drelu_v2_pass.cc126 VectorRef relu_grad({prim::kPrimReluGrad, dy_, VectorRef({prim::kPrimRelu, x_})}); in DefinePattern()
Dbatch_norm_add_relu_grad_fusion.cc152 VectorRef relu_grad = VectorRef({prim::kPrimReluGrad, dy_, y_}); in DefinePattern()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/ir_fusion/
Dderelu_fusion.cc102 VectorRef relu_grad({prim::kPrimReluGrad, i0, relu}); in DefinePattern()
/third_party/mindspore/mindspore/ccsrc/transform/graph_ir/op_declare/
Dnonlinear_fuc_ops_declare.cc108 REG_ADPT_DESC(ReluGrad, prim::kPrimReluGrad->name(), ADPT_DESC(ReluGrad))
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/
Dgraph_kernel_expander.cc83 {kGPUDevice, OpLevel_0, prim::kPrimReluGrad}, in GetExpandOps()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/
Deltwise_grad_cpu_kernel.cc236 elt_map{{prim::kPrimReluGrad->name(), &EltWiseGradCPUKernel<T>::ReluGrad}, in Launch()
/third_party/mindspore/tests/ut/cpp/transform/
Dconvert_test.cc230 auto prim = prim::kPrimReluGrad; in TEST_F()
/third_party/mindspore/mindspore/core/base/
Dcore_ops.h311 inline const PrimitivePtr kPrimReluGrad = std::make_shared<Primitive>(kReLUGrad); variable