fc.cc 4.6 KB
Newer Older
F
flame 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2018 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 "paddle/fluid/inference/anakin/convert/fc.h"
F
flame 已提交
16
#include <algorithm>
17 18
#include <string>
#include <vector>
19
#include "paddle/fluid/inference/anakin/convert/helper.h"
F
flame 已提交
20 21 22 23 24

namespace paddle {
namespace inference {
namespace anakin {

25 26 27 28
template <typename TargetT, ::anakin::Precision PrecisionT>
void FcBaseOpConverter<TargetT, PrecisionT>::operator()(
    const framework::proto::OpDesc &op, const framework::BlockDesc &block_desc,
    const framework::Scope &scope, bool test_mode) {
F
flame 已提交
29
  framework::OpDesc op_desc(op, nullptr);
30
  auto input_names = op_desc.InputNames();
31
  bool with_bias = input_names.size() >= 3;
32 33 34 35 36 37 38

  std::string w_name = "Y";
  std::string i_name = "X";
  if (with_bias) {
    w_name = "W";
    i_name = "Input";
  }
F
flame 已提交
39

F
flame 已提交
40
  auto op_name = op_desc.Type() + ":" + op_desc.Output("Out").front();
41 42 43

  // get weights
  auto *y_v = scope.FindVar(op_desc.Input(w_name).front());
F
flame 已提交
44
  PADDLE_ENFORCE_NOT_NULL(y_v);
45 46
  auto weight_tensor = tensor_from_var(*y_v, platform::CPUPlace());
  auto weight_shape = framework::vectorize2int(weight_tensor->dims());
F
flame 已提交
47 48

  int out_dim = weight_shape[1];
49 50
  const int w_m = weight_shape[0];
  const int w_k = weight_shape[1];
F
flame 已提交
51

52 53
  auto input_name = op_desc.Input(i_name).front();
  auto output_name = op_desc.Output("Out").front();
F
flame 已提交
54

55 56 57 58
  this->engine_->AddOp(op_name, "Dense", {input_name}, {output_name});
  this->engine_->AddOpAttr(op_name, "bias_term", with_bias);
  this->engine_->AddOpAttr(op_name, "axis", 1);
  this->engine_->AddOpAttr(op_name, "out_dim", out_dim);
F
flame 已提交
59

60 61 62 63
  auto *weight_data = weight_tensor->data<float>();
  PADDLE_ENFORCE(w_m * w_k == weight_tensor->numel());

  std::vector<float> trans_weight_data(weight_tensor->numel());
64 65 66 67 68
  for (int i = 0; i < w_m; i++) {
    for (int j = 0; j < w_k; j++) {
      trans_weight_data[i + j * w_m] = weight_data[i * w_k + j];
    }
  }
69 70 71 72 73 74 75 76 77 78

  int weight_num = weight_tensor->numel();
  bool enable_int8 = boost::get<bool>(op_desc.HasAttr("enable_int8"));
  if (enable_int8) {
    if (weight_shape.size() < 4UL) {
      weight_shape.insert(weight_shape.begin(), 4UL - weight_shape.size(), 1);
    }
    ::anakin::saber::Shape anakin_shape(weight_shape);
    const float int8_range = 127.;
    float in_scale = boost::get<float>(op_desc.GetAttr("input_scale"));
79 80
    auto weight_scale =
        boost::get<std::vector<float>>(op_desc.GetAttr("weight_scale"));
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
    PBlock<TargetT> *weight1 =
        new PBlock<TargetT>(anakin_shape, ::anakin::AK_INT8);
    this->engine_->RegistBlock(weight1);
    std::vector<char> weight_int8;
    for (int i = 0; i < weight_num; i++) {
      bool is_valid_int8 =
          ((trans_weight_data[i] >= -128) && (trans_weight_data[i] <= 127));
      PADDLE_ENFORCE(is_valid_int8,
                     "We are in anakin subgraph int8 mode, the weight of fc "
                     "should be in range [-128, 127]");
      weight_int8.push_back(static_cast<char>(trans_weight_data[i]));
    }
    memcpy(static_cast<void *>(weight1->h_tensor().mutable_data()),
           static_cast<void *>(weight_int8.data()), sizeof(char) * weight_num);
    weight1->d_tensor().set_shape(anakin_shape);
    weight1->d_tensor().copy_from(weight1->h_tensor());
    this->engine_->AddOpAttr(op_name, "weight_1", *weight1);
    this->engine_->Graph()->SetOpPrec(op_name, ::anakin::AK_INT8);
99 100
    this->engine_->Graph()->SetWeightsScale(
        op_name, {weight_scale[0] / int8_range}, false);
101 102 103 104 105 106
    this->engine_->AddTensorScale(input_name, in_scale / int8_range);
  } else {
    auto *weight1 = pblock_from_vector<TargetT, PrecisionT>(trans_weight_data,
                                                            this->engine_);
    this->engine_->AddOpAttr(op_name, "weight_1", *weight1);
  }
107 108 109 110 111

  // get bias
  if (with_bias) {
    auto *b_v = scope.FindVar(op_desc.Input("Bias").front());
    PADDLE_ENFORCE_NOT_NULL(b_v);
112 113
    auto weight2 = pblock_from_var<TargetT, PrecisionT>(*b_v, this->engine_);
    this->engine_->AddOpAttr(op_name, "weight_2", *weight2);
114
  }
F
flame 已提交
115 116 117 118 119
}

}  // namespace anakin
}  // namespace inference
}  // namespace paddle
120

121
REGISTER_ANAKIN_OP_CONVERTER(mul, MulOpConverter);
122
REGISTER_ANAKIN_OP_CONVERTER(fc, FcOpConverter);