dropout_op.cc 2.2 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
// 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.
14
#include "lite/operators/dropout_op.h"
Y
Yan Chunwei 已提交
15 16 17 18 19 20 21 22 23
#include <string>
#include <vector>
#include "lite/core/op_lite.h"
#include "lite/core/op_registry.h"

namespace paddle {
namespace lite {
namespace operators {

24 25 26 27
bool DropoutOp::CheckShape() const {
  CHECK_OR_FALSE(param_.x);
  return true;
}
Y
Yan Chunwei 已提交
28

29 30 31 32 33
bool DropoutOp::InferShape() const {
  const auto x_dims = param_.x->dims();
  param_.output->Resize(x_dims);
  if (param_.is_test == false) {
    param_.mask->Resize(x_dims);
Y
Yan Chunwei 已提交
34
  }
35 36 37 38
  // share LoD
  // param_.output->set_lod(param_.input->lod());
  return true;
}
Y
Yan Chunwei 已提交
39

40 41 42 43 44
// TODO(Superjomn) replace framework::OpDesc with a lite one.
bool DropoutOp::AttachImpl(const cpp::OpDesc& op_desc, lite::Scope* scope) {
  auto input = op_desc.Input("X").front();
  auto out = op_desc.Output("Out").front();
  auto Mask = op_desc.Output("Mask").front();
Y
Yan Chunwei 已提交
45

46 47 48
  param_.x = GetVar<lite::Tensor>(scope, input);
  param_.output = GetMutableVar<lite::Tensor>(scope, out);
  param_.mask = GetMutableVar<lite::Tensor>(scope, Mask);
Y
Yan Chunwei 已提交
49

50 51 52 53 54 55 56 57 58 59 60 61 62
  param_.dropout_prob = op_desc.GetAttr<float>("dropout_prob");
  param_.is_test = true;
  // TODO(sangoly): `is_test` has different attr type in x86 and arm, set
  // `true` now.
  // if (op_desc.HasAttr("is_test")) {
  //   param_.is_test = op_desc.GetAttr<bool>("is_test");
  // }
  param_.fix_seed = op_desc.GetAttr<bool>("fix_seed");
  param_.seed = op_desc.GetAttr<int>("seed");
  param_.dropout_implementation =
      op_desc.GetAttr<std::string>("dropout_implementation");
  return true;
}
Y
Yan Chunwei 已提交
63 64 65 66 67

}  // namespace operators
}  // namespace lite
}  // namespace paddle

68
REGISTER_LITE_OP(dropout, paddle::lite::operators::DropoutOp);