// Copyright (c) 2019 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 "lite/operators/var_conv_2d_op.h" #include "lite/core/op_registry.h" namespace paddle { namespace lite { namespace operators { bool VarConv2dOp::CheckShape() const { return true; } bool VarConv2dOp::InferShape() const { return true; } bool VarConv2dOp::AttachImpl(const cpp::OpDesc &opdesc, lite::Scope *scope) { param_.X = const_cast( &scope->FindVar(opdesc.Input("X").front())->Get()); // param_.ROW = const_cast( // &scope->FindVar(opdesc.Input("ROW").front())->Get()); // param_.COLUMN = const_cast( // &scope->FindVar(opdesc.Input("COLUMN").front())->Get()); param_.W = const_cast( &scope->FindVar(opdesc.Input("W").front())->Get()); param_.Out = scope->FindVar(opdesc.Output("Out").front())->GetMutable(); param_.Col = scope->FindVar(opdesc.Output("Col").front())->GetMutable(); CHECK(param_.X) << "X(Input) of VarConv2dOP should not be null."; // CHECK(param_.ROW) << "Input(ROW) of VarConv2dOP should not be null."; // CHECK(param_.COLUMN) << "Input(COLUMN) of VarConv2dOP should not be null."; CHECK(param_.W) << "W(Input) of VarConv2dOP should not be null."; CHECK(param_.Out) << "Out(Output) of VarConv2dOP should not be null."; CHECK(param_.Col) << "Col(Output) of VarConv2dOP should not be null."; param_.output_channel = opdesc.GetAttr("OutputChannel"); param_.input_channel = opdesc.GetAttr("InputChannel"); param_.kernel_h = opdesc.GetAttr("KernelH"); param_.kernel_w = opdesc.GetAttr("KernelW"); param_.stride_h = opdesc.GetAttr("StrideH"); param_.stride_w = opdesc.GetAttr("StrideW"); if (opdesc.HasAttr("fuse_relu")) { param_.fuse_relu = opdesc.GetAttr("fuse_relu"); } return true; } } // namespace operators } // namespace lite } // namespace paddle REGISTER_LITE_OP(var_conv_2d, paddle::lite::operators::VarConv2dOp);