test_resnet50.cpp 4.6 KB
Newer Older
Z
zhangyang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/* 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. */
Z
zhangyang 已提交
14
#include <fstream>
Z
zhangyang 已提交
15 16
#include <iomanip>
#include <iostream>
Z
zhangyang 已提交
17
#include "../test_include.h"
Z
zhangyang 已提交
18 19 20 21 22 23 24 25

#ifdef PADDLE_MOBILE_FPGA_V1
#include "fpga/V1/api.h"
#endif
#ifdef PADDLE_MOBILE_FPGA_V2
#include "fpga/V2/api.h"
#endif

Z
zhangyang 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
void readStream(std::string filename, float *buf) {
  std::ifstream in;
  in.open(filename, std::ios::in);
  if (!in.is_open()) {
    std::cout << "open File Failed." << std::endl;
    return;
  }
  string strOne;
  int i = 0;
  while (!in.eof()) {
    in >> buf[i];
    i++;
  }
  in.close();
}
Z
zhangyang 已提交
41

Z
zhangyang 已提交
42 43 44 45 46 47 48 49 50 51 52 53
void convert_to_chw(int16_t **data_in, int channel, int height, int width,
                    int16_t *data_tmp) {
  int64_t amount_per_side = width * height;
  for (int h = 0; h < height; h++) {
    for (int w = 0; w < width; w++) {
      for (int c = 0; c < channel; c++) {
        *(data_tmp + c * amount_per_side + width * h + w) = *((*data_in)++);
      }
    }
  }
}

54 55
void dump(std::string filename, Tensor input_tensor) {
  auto dataptr = reinterpret_cast<half *>(input_tensor.get_data());
Z
zhangyang 已提交
56 57 58 59 60 61 62 63
  std::ofstream out(filename.c_str());
  float result = 0;
  for (int i = 0; i < input_tensor.numel(); ++i) {
    result = paddle_mobile::fpga::fp16_2_fp32(dataptr[i]);
    out << result << std::endl;
  }
  out.close();
}
Z
zhangyang0701 已提交
64 65
void dump_stride_half(std::string filename, Tensor input_tensor,
                      const int dumpnum) {
Z
zhangyang 已提交
66 67 68
  int c = (input_tensor.dims())[1];
  int h = (input_tensor.dims())[2];
  int w = (input_tensor.dims())[3];
69
  auto data_ptr = input_tensor.get_data();
Z
zhangyang0701 已提交
70 71 72
  auto *data_tmp =
      reinterpret_cast<half *>(malloc(c * h * w * sizeof(int16_t)));
  auto *data_ptr_16 = reinterpret_cast<half *>(data_ptr);
Z
zhangyang 已提交
73 74 75 76 77 78 79 80 81 82 83 84
  convert_to_chw(&data_ptr_16, c, h, w, data_tmp);
  std::ofstream out(filename.c_str());
  float result = 0;
  int stride = input_tensor.numel() / dumpnum;
  stride = stride > 0 ? stride : 1;
  for (int i = 0; i < input_tensor.numel(); i += stride) {
    result = paddle_mobile::fpga::fp16_2_fp32(data_tmp[i]);
    out << result << std::endl;
  }
  out.close();
  free(data_tmp);
}
Z
zhangyang0701 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98

void dump_stride_float(std::string filename, Tensor input_tensor,
                       const int dumpnum) {
  auto data_ptr = reinterpret_cast<float *>(input_tensor.get_data());
  std::ofstream out(filename.c_str());
  float result = 0;
  int stride = input_tensor.numel() / dumpnum;
  stride = stride > 0 ? stride : 1;
  for (int i = 0; i < input_tensor.numel(); i += stride) {
    result = data_ptr[i];
    out << result << std::endl;
  }
  out.close();
}
Z
zhangyang 已提交
99 100
static const char *g_resnet50 = "../models/resnet50";
const std::string g_image_src_float = "../images/image_src_float";
Z
zhangyang 已提交
101
int main() {
Z
zhangyang 已提交
102
  paddle_mobile::fpga::open_device();
Z
zhangyang 已提交
103
  paddle_mobile::PaddleMobile<paddle_mobile::FPGA> paddle_mobile;
Z
zhangyang 已提交
104
  if (paddle_mobile.Load(std::string(g_resnet50), true)) {
Z
zhangyang 已提交
105
    Tensor input_tensor;
Z
zhangyang 已提交
106 107
    SetupTensor<float>(&input_tensor, {1, 3, 224, 224}, static_cast<float>(2),
                       static_cast<float>(2));
Z
zhangyang 已提交
108 109
    readStream(g_image_src_float,
               input_tensor.mutable_data<float>({1, 3, 224, 224}));
Z
zhangyang 已提交
110
    paddle_mobile.FeedData(input_tensor);
Z
zhangyang 已提交
111
    paddle_mobile.Predict_To(-1);
Z
zhangyang 已提交
112
    for (int i = 0; i < 73; i++) {
Z
zhangyang 已提交
113
      auto tensor_ptr = paddle_mobile.FetchResult(i);
Z
zhangyang 已提交
114
      std::string saveName = "resnet50_result_" + std::to_string(i);
115
      paddle_mobile::fpga::fpga_invalidate((*tensor_ptr).get_data(),
Z
zhangyang 已提交
116
                                           tensor_ptr->numel() * sizeof(half));
Z
zhangyang0701 已提交
117
      dump_stride_half(saveName, (*tensor_ptr), 20);
Z
zhangyang 已提交
118 119
      // dump(saveName, (*tensor_ptr));
    }
Z
zhangyang 已提交
120

Z
zhangyang0701 已提交
121 122 123 124
    auto tensor_ptr = paddle_mobile.FetchResult(73);
    dump_stride_float("resnet50_result_73", (*tensor_ptr), 20);
    tensor_ptr = paddle_mobile.FetchResult(74);
    dump_stride_float("resnet50_result_74", (*tensor_ptr), 9999);
Z
zhangyang 已提交
125

Z
zhangyang 已提交
126
    float max = 0;
Z
zhangyang0701 已提交
127
    auto data_ptr = tensor_ptr->data<float>();
Z
zhangyang 已提交
128
    int maximumIdx = 0;
Z
zhangyang0701 已提交
129
    for (int i = 0; i < (*tensor_ptr).numel(); i++) {
Z
zhangyang 已提交
130 131 132 133 134
      if (data_ptr[i] > max) {
        maximumIdx = i;
        max = data_ptr[i];
      }
    }
Z
zhangyang 已提交
135
    std::cout << "index : " << std::dec << maximumIdx << ",    value : " << max
Z
zhangyang 已提交
136 137
              << std::endl;
    std::cout << "Computation done" << std::endl;
Z
zhangyang 已提交
138 139 140
    return 0;
  }
}