fc_op.h 2.2 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

S
superjomn 已提交
15 16
#pragma once

S
superjomn 已提交
17 18
#include <string>
#include <vector>
19
#include "paddle/fluid/lite/core/compatible_tensor.h"
S
superjomn 已提交
20
#include "paddle/fluid/lite/core/kernel.h"
S
update  
superjomn 已提交
21
#include "paddle/fluid/lite/core/op_lite.h"
S
superjomn 已提交
22 23
#include "paddle/fluid/lite/core/scope.h"
#include "paddle/fluid/lite/operators/op_params.h"
S
superjomn 已提交
24 25 26 27 28 29 30 31 32 33
#include "paddle/fluid/lite/utils/all.h"

namespace paddle {
namespace lite {
namespace operators {

class FcOpLite : public OpLite {
 public:
  FcOpLite() {}

S
superjomn 已提交
34 35
  FcOpLite(const std::string &type) : OpLite(type) {}

S
superjomn 已提交
36 37 38 39
  bool CheckShape() const override;

  bool InferShape() const override;

S
superjomn 已提交
40
  /*
S
superjomn 已提交
41 42 43 44 45
  bool Run() override {
    CHECK(kernel_);
    kernel_->Run();
    return true;
  }
S
superjomn 已提交
46
   */
S
superjomn 已提交
47

S
superjomn 已提交
48
  // TODO(Superjomn) replace framework::OpDesc with a lite one.
49
  bool AttachImpl(const OpDesc &op_desc, lite::Scope *scope) override {
S
superjomn 已提交
50 51
    auto input = op_desc.Input("Input").front();
    auto W = op_desc.Input("W").front();
S
superjomn 已提交
52 53
    auto bias = op_desc.Input("Bias").front();
    auto out = op_desc.Output("Out").front();
S
superjomn 已提交
54

55 56 57
    param_.input = scope->FindVar(input)->GetMutable<lite::Tensor>();
    param_.w = scope->FindVar(W)->GetMutable<lite::Tensor>();
    param_.bias = scope->FindVar(bias)->GetMutable<lite::Tensor>();
S
superjomn 已提交
58
    CHECK(scope->FindVar(out));
59
    param_.output = scope->FindVar(out)->GetMutable<lite::Tensor>();
60
    param_.in_num_col_dims = GetAttr<int>(op_desc.GetAttr("in_num_col_dims"));
S
superjomn 已提交
61

S
superjomn 已提交
62
    return true;
S
superjomn 已提交
63 64
  }

65 66
  void AttachKernel(KernelBase *kernel) override { kernel->SetParam(param_); }

S
superjomn 已提交
67 68 69 70 71 72 73 74 75
  std::string DebugString() const override { return "fc"; }

 private:
  mutable FcParam param_;
};

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