fpga_quantilization.h 1.6 KB
Newer Older
H
hanbuhe 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* 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. */
#pragma once

#include "common/types.h"
#include "framework/lod_tensor.h"
#include "framework/tensor.h"

namespace paddle_mobile {

template <typename Dtype>
H
hanbuhe 已提交
23
framework::Tensor* quantilize_filter(framework::Tensor* filter) {
H
hanbuhe 已提交
24 25
  float scale = 0;
  // 32bit filter -> 8bit filter;
H
hanbuhe 已提交
26 27
  float min = 0f;
  float max = 0f;
H
hanbuhe 已提交
28
  if (filter->type() == typeid(float)) {
H
hanbuhe 已提交
29 30 31 32 33 34 35 36 37 38
    float* floatData = originalFilter->data<float>();
    for (int i = 0; i < filter->numel(); ++i) {
      min = std::min(min, floatData[i]);
      max = std::max(max, floatData[i]);
    }

    float fix_range = (float)((1 << (8 - 1)) - 1);
    float float_range = max;
    scale = (float_range / fix_range);

H
hanbuhe 已提交
39 40 41
    framework::Tensor* originalFilter = filter;
    framework::Tensor* quantFilter = new framework::Tensor();
    int8_t* intData = quantFilter->mutable_data<int8_t>();
H
hanbuhe 已提交
42 43 44 45 46 47 48 49
    for (int i = 0; i < filter->numel(); ++i) {
      intData[i] = (int8_t)floatData[i] * scale;
    }
    quantFilter.scale = scale;
    // NCHW -> NHWC;
    return quantFilter;
  }
  return filter;
H
hanbuhe 已提交
50 51 52
}

}  // namespace paddle_mobile