api.h 2.9 KB
Newer Older
H
hanbuhe 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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

Z
zhangyang 已提交
17 18
#include "fpga/common/fpga_common.h"
#include "fpga/common/pe.h"
Z
zhangyang 已提交
19
#include "framework/tensor.h"
H
hanbuhe 已提交
20

Z
zhangyang 已提交
21
namespace paddle_mobile {
H
hanbuhe 已提交
22 23
namespace fpga {

Z
zhangyang 已提交
24
void format_image(framework::Tensor* image_tensor);
Z
zhangyang 已提交
25
void format_fp16_ofm(framework::Tensor* ofm_tensor);  // only allocate memory
26
void format_fp16_ofm(framework::Tensor* ofm_tensor, framework::DDim dims);
Z
zhangyang 已提交
27
void format_fp32_ofm(framework::Tensor* ofm_tensor);
28

Z
zhangyang 已提交
29
float filter_find_max(framework::Tensor* filter_tensor);
30
int get_filter_num_per_div(framework::Tensor* filter_tensor, int group_num);
Z
zhangyang 已提交
31 32 33
int get_deconv_filter_num_per_div(framework::Tensor* filter_tensor,
                                  int group_num, int stride);

Z
zhangyang 已提交
34
int get_plit_num(framework::Tensor* filter_tensor);
Z
zhangyang 已提交
35 36
int get_deconv_plit_num(framework::Tensor* filter_tensor, int stride);

Z
zhangyang 已提交
37
int get_aligned_filter_element_num(int chw);
Z
zhangyang 已提交
38 39
void format_filter(framework::Tensor* filter_tensor, float max_value,
                   int group_num);
Z
zhangyang 已提交
40
void format_fc_filter(framework::Tensor* filter_tensor, float max_value);
Z
zhangyang 已提交
41 42
void format_bias_scale_array(float** bias_scale_array,
                             int element_num_per_division, int num);
Z
zhangyang 已提交
43 44
void format_concat_output(framework::Tensor* out, int height, int width,
                          int image_num, uint32_t* channel_num);
Z
zhangyang 已提交
45

Z
zhangyang 已提交
46 47 48 49
void fill_split_arg(struct SplitConvArgs* arg, framework::Tensor* input,
                    framework::Tensor* out, framework::Tensor* filter,
                    bool relu_enabled, int group_num, int stride_h,
                    int stride_w, int padding_h, int padding_w, float* bs_ptr);
Z
zhangyang 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
void fill_deconv_arg(struct DeconvArgs* arg, framework::Tensor* input,
                     framework::Tensor* out, framework::Tensor* filter,
                     bool relu_enabled, int group_num, int stride_h,
                     int stride_w, int padding_h, int padding_w, float* bs_ptr);

void format_deconv_filter(framework::Tensor* filter_tensor, float max_value,
                          int group_num, int stride);

template <typename Dtype>
void savefile(std::string filename, void* buffer, int dataSize, Dtype tmp) {
  float data;
  std::ofstream out(filename.c_str());
  for (int i = 0; i < dataSize; ++i) {
    data = (((Dtype*)buffer)[i]);
    out << data << std::endl;
  }
  out.close();
  return;
}
69

H
hanbuhe 已提交
70
}  // namespace fpga
Z
zhangyang 已提交
71
}  // namespace paddle_mobile