test_googlenet.cpp 2.8 KB
Newer Older
L
liuruilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

15
#include <iostream>
16
#include <sstream>
L
liuruilong 已提交
17 18 19
#include "../test_helper.h"
#include "../test_include.h"

20 21 22 23 24 25 26 27 28
int main(int argc, char *argv[]) {
  if (argc < 4) {
    std::cout << "Usage: ./test_googlenet fluid-model input-image image-shape "
                 "[thread-num] [fusion]\n"
              << " fluid-model: fluid model path. \n"
              << " input-image: input raw image path. \n"
              << " image-shape: input tensor shape, such as 1,3,224,224.\n"
              << " thread-num: optional int, threads count, default is 1.\n"
              << " fusion: optional bool, default is 0.\n";
29 30 31 32
    return 1;
  }
  int thread_num = 1;
  bool optimize = false;
33 34 35 36 37
  char *fluid_model = argv[1];
  char *input_img = argv[2];
  char *feed_shape = argv[3];
  if (argc >= 5) {
    thread_num = atoi(argv[4]);
38
  }
39 40
  if (argc >= 6) {
    optimize = atoi(argv[5]);
41
  }
Z
zhangyang 已提交
42 43 44 45
#ifdef PADDLE_MOBILE_FPGA
  paddle_mobile::PaddleMobile<paddle_mobile::FPGA> paddle_mobile;
#endif
#ifdef PADDLE_MOBILE_CPU
46
  paddle_mobile::PaddleMobile<paddle_mobile::CPU> paddle_mobile;
Z
zhangyang 已提交
47
#endif
48
  paddle_mobile.SetThreadNum(thread_num);
W
wangliu 已提交
49
  auto time1 = time();
50
  std::vector<float> output;
51
  if (paddle_mobile.Load(fluid_model, optimize, false, 1, true)) {
L
liuruilong 已提交
52
    auto time2 = paddle_mobile::time();
Y
yangfei 已提交
53 54
    std::cout << "load cost :" << paddle_mobile::time_diff(time1, time2) << "ms"
              << std::endl;
55 56
    std::vector<float> input;
    std::vector<int64_t> dims{1, 3, 224, 224};
57
    if (feed_shape) {
58 59
      sscanf(feed_shape, "%lld,%lld,%lld,%lld", &dims[0], &dims[1], &dims[2],
             &dims[3]);
60 61
    }
    std::cout << "feed shape: [" << dims[0] << ", " << dims[1] << ", "
62
              << dims[2] << ", " << dims[3] << "]" << std::endl;
63 64 65

    GetInput<float>(input_img, &input, dims);

66
    // warmup
H
hjchen2 已提交
67 68 69
    for (int i = 0; i < 10; ++i) {
      output = paddle_mobile.Predict(input, dims);
    }
70
    auto time3 = time();
Z
zhangyang 已提交
71
    for (int i = 0; i < 10; ++i) {
72
      output = paddle_mobile.Predict(input, dims);
73
    }
74
    auto time4 = time();
75
    std::cout << "predict cost: " << time_diff(time3, time4) / 10 << "ms\n";
76 77 78 79 80 81 82

    std::ostringstream os;
    os << output[0];
    for (int i = 1; i < output.size(); ++i) {
      os << ", " << output[i];
    }
    DLOG << os.str();
83
  }
L
liuruilong 已提交
84 85
  return 0;
}