|
|
|
|
@ -1,3 +1,17 @@
|
|
|
|
|
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
|
|
|
|
|
|
|
|
|
|
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. */
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "paddle/framework/op_proto.pb.h"
|
|
|
|
|
@ -10,7 +24,7 @@ class OpRegistry;
|
|
|
|
|
enum InOutType { IN, OUT };
|
|
|
|
|
|
|
|
|
|
struct OpInOutArg {
|
|
|
|
|
OpInOutArg(const std::string& proto_name, const InOutType& type,
|
|
|
|
|
explicit OpInOutArg(const std::string& proto_name, const InOutType& type,
|
|
|
|
|
bool needed_in_grad, size_t begin_idx, size_t end_idx)
|
|
|
|
|
: proto_name_(proto_name),
|
|
|
|
|
type_(type),
|
|
|
|
|
@ -29,7 +43,7 @@ class GradOpBuilder {
|
|
|
|
|
using VarIndexMap = std::unordered_map<std::string, int>;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
GradOpBuilder(const OperatorBase& op) : op_(op) {}
|
|
|
|
|
explicit GradOpBuilder(const OperatorBase& op) : op_(op) {}
|
|
|
|
|
OperatorBase* Build();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|