fc_op.h 2.7 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
  explicit FcOpLite(const std::string &type) : OpLite(type) {}
S
superjomn 已提交
35

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.
Y
Yan Chunwei 已提交
49
  bool AttachImpl(const cpp::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>();
Y
Yan Chunwei 已提交
60
    param_.in_num_col_dims = op_desc.GetAttr<int>("in_num_col_dims");
S
superjomn 已提交
61

X
xingzhaolong 已提交
62 63 64 65 66 67 68 69 70 71 72
    // For Int8
    if (op_desc.HasAttr("enable_int8")) {
      param_.enable_int8 = op_desc.GetAttr<bool>("enable_int8");
      if (op_desc.HasAttr("input_scale"))
        param_.input_scale = op_desc.GetAttr<float>("input_scale");
      if (op_desc.HasAttr("weight_scale"))
        param_.weight_scale =
            op_desc.GetAttr<std::vector<float>>("weight_scale");
      if (op_desc.HasAttr("output_scale"))
        param_.output_scale = op_desc.GetAttr<float>("output_scale");
    }
S
superjomn 已提交
73
    return true;
S
superjomn 已提交
74 75
  }

76 77
  void AttachKernel(KernelBase *kernel) override { kernel->SetParam(param_); }

S
superjomn 已提交
78 79 80 81 82 83 84 85 86
  std::string DebugString() const override { return "fc"; }

 private:
  mutable FcParam param_;
};

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