assign_op.cc 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
// 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/assign_op.h"
#include "lite/core/op_lite.h"
#include "lite/core/op_registry.h"

namespace paddle {
namespace lite {
namespace operators {

bool AssignOpLite::CheckShape() const {
  CHECK_OR_FALSE(param_.X);
  CHECK_OR_FALSE(param_.Out);
  return true;
}

29
bool AssignOpLite::InferShapeImpl() const {
30 31 32 33 34 35 36
  if (param_.X != nullptr) {
    param_.Out->Resize(param_.X->dims());
  } else if (param_.X_array != nullptr) {
    param_.Out_array->resize(param_.Out_array->size());
  } else {
    LOG(FATAL) << "x or x_array must be set.";
  }
37 38 39 40 41
  return true;
}

// TODO(Superjomn) replace framework::OpDesc with a lite one.
bool AssignOpLite::AttachImpl(const cpp::OpDesc &op_desc, lite::Scope *scope) {
42 43
  auto x_name = op_desc.Input("X").front();
  auto out_name = op_desc.Output("Out").front();
44

45 46 47 48 49 50 51 52 53 54 55 56
  auto x_var = scope->FindVar(x_name);
  if (x_var->IsType<Tensor>()) {
    param_.X = scope->FindTensor(x_name);
    param_.Out = scope->FindMutableTensor(out_name);
  } else if (x_var->IsType<std::vector<Tensor>>()) {
    param_.X_array = x_var->GetMutable<std::vector<Tensor>>();
    param_.Out_array =
        scope->FindVar(out_name)->GetMutable<std::vector<Tensor>>();
  } else {
    LOG(FATAL) << "X type for assign op is unsupported. Expected type is "
                  "tensor or tensor_array.";
  }
57 58 59 60 61 62 63 64 65

  return true;
}

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

REGISTER_LITE_OP(assign, paddle::lite::operators::AssignOpLite);