test_yologpu.cpp 6.1 KB
Newer Older
Y
yangfei 已提交
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 <iostream>
16 17
#include <thread>
#include "../../src/common/types.h"
Y
yangfei 已提交
18 19
#include "../test_helper.h"
#include "../test_include.h"
20 21 22 23 24 25 26 27 28 29 30
void t1() {
  paddle_mobile::PaddleMobile<paddle_mobile::GPU_CL> paddle_mobile;
  //    paddle_mobile.SetThreadNum(4);
#ifdef PADDLE_MOBILE_CL
  paddle_mobile.SetCLPath("/data/local/tmp/bin");
#endif
  printf("cpu time:%f\n", paddle_mobile.GetCPUPredictTime());
  printf("gpu time:%f\n", paddle_mobile.GetGPUPredictTime());
  auto time1 = paddle_mobile::time();
  auto isok = paddle_mobile.Load(std::string(g_yolo_mul) + "/model",
                                 std::string(g_yolo_mul) + "/params", true);
Y
yangfei 已提交
31

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
  //  auto isok = paddle_mobile.Load(std::string(g_yolo_mul), true);
  if (isok) {
    auto time2 = paddle_mobile::time();
    std::cout << "load cost :" << paddle_mobile::time_diff(time1, time2) << "ms"
              << std::endl;

    std::vector<float> input;
    std::vector<int64_t> dims{1, 3, 416, 416};
    GetInput<float>(g_yolo_img, &input, dims);

    std::vector<float> vec_result;
    //            = paddle_mobile.Predict(input, dims);

    auto time3 = paddle_mobile::time();
    int max = 10;
    for (int i = 0; i < max; ++i) {
      vec_result = paddle_mobile.Predict(input, dims);
    }
    auto time4 = paddle_mobile::time();

    //    auto time3 = paddle_mobile::time();

    //    for (int i = 0; i < 10; ++i) {
    //      auto vec_result = paddle_mobile.Predict(input, dims);
    //    }

    //    auto time4 = paddle_mobile::time();

    std::cout << "predict cost :"
              << paddle_mobile::time_diff(time3, time4) / max << "ms"
              << std::endl;
    std::vector<float>::iterator biggest =
        std::max_element(std::begin(vec_result), std::end(vec_result));
    std::cout << " Max element is " << *biggest << " at position "
              << std::distance(std::begin(vec_result), biggest) << std::endl;
    //        for (float i : vec_result) {
    //            std::cout << i << std::endl;
    //        }
  }
}

void t2() {
L
liuruilong 已提交
74 75
  paddle_mobile::PaddleMobile<paddle_mobile::GPU_CL> paddle_mobile;
  //    paddle_mobile.SetThreadNum(4);
76 77 78
#ifdef PADDLE_MOBILE_CL
  paddle_mobile.SetCLPath("/data/local/tmp/bin");
#endif
L
liuruilong 已提交
79
  auto time1 = paddle_mobile::time();
80 81
  auto isok = paddle_mobile.Load(std::string(g_yolo_mul) + "/model",
                                 std::string(g_yolo_mul) + "/params", true);
Y
yangfei 已提交
82

83
  //  auto isok = paddle_mobile.Load(std::string(g_yolo_mul), true);
L
liuruilong 已提交
84 85 86 87
  if (isok) {
    auto time2 = paddle_mobile::time();
    std::cout << "load cost :" << paddle_mobile::time_diff(time1, time2) << "ms"
              << std::endl;
Y
yangfei 已提交
88

L
liuruilong 已提交
89 90 91
    std::vector<float> input;
    std::vector<int64_t> dims{1, 3, 416, 416};
    GetInput<float>(g_yolo_img, &input, dims);
Y
yangfei 已提交
92

L
liuruilong 已提交
93 94
    std::vector<float> vec_result;
    //            = paddle_mobile.Predict(input, dims);
Y
yangfei 已提交
95

L
liuruilong 已提交
96 97 98 99 100 101
    auto time3 = paddle_mobile::time();
    int max = 10;
    for (int i = 0; i < max; ++i) {
      vec_result = paddle_mobile.Predict(input, dims);
    }
    auto time4 = paddle_mobile::time();
Y
yangfei 已提交
102

L
liuruilong 已提交
103
    //    auto time3 = paddle_mobile::time();
Y
yangfei 已提交
104

L
liuruilong 已提交
105 106 107
    //    for (int i = 0; i < 10; ++i) {
    //      auto vec_result = paddle_mobile.Predict(input, dims);
    //    }
Y
yangfei 已提交
108

L
liuruilong 已提交
109
    //    auto time4 = paddle_mobile::time();
Y
yangfei 已提交
110

L
liuruilong 已提交
111 112 113 114 115 116 117 118 119 120 121
    std::cout << "predict cost :"
              << paddle_mobile::time_diff(time3, time4) / max << "ms"
              << std::endl;
    std::vector<float>::iterator biggest =
        std::max_element(std::begin(vec_result), std::end(vec_result));
    std::cout << " Max element is " << *biggest << " at position "
              << std::distance(std::begin(vec_result), biggest) << std::endl;
    //        for (float i : vec_result) {
    //            std::cout << i << std::endl;
    //        }
  }
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
}

void t3() {
  paddle_mobile::PaddleMobile<paddle_mobile::CPU> paddle_mobile;
  //    paddle_mobile.SetThreadNum(4);
  //#ifdef PADDLE_MOBILE_CL
  //  paddle_mobile.SetCLPath("/data/local/tmp/bin");
  //#endif
  auto time1 = paddle_mobile::time();
  auto isok = paddle_mobile.Load(std::string(g_yolo_mul) + "/model",
                                 std::string(g_yolo_mul) + "/params", true);

  //  auto isok = paddle_mobile.Load(std::string(g_yolo_mul), true);
  if (isok) {
    auto time2 = paddle_mobile::time();
    std::cout << "load cost :" << paddle_mobile::time_diff(time1, time2) << "ms"
              << std::endl;

    std::vector<float> input;
    std::vector<int64_t> dims{1, 3, 416, 416};
    GetInput<float>(g_yolo_img, &input, dims);

    std::vector<float> vec_result = paddle_mobile.Predict(input, dims);

    auto time3 = paddle_mobile::time();
    int max = 10;
    for (int i = 0; i < max; ++i) {
      vec_result = paddle_mobile.Predict(input, dims);
    }
    auto time4 = paddle_mobile::time();

    //    auto time3 = paddle_mobile::time();

    //    for (int i = 0; i < 10; ++i) {
    //      auto vec_result = paddle_mobile.Predict(input, dims);
    //    }

    //    auto time4 = paddle_mobile::time();

    std::cout << "predict cost :"
              << paddle_mobile::time_diff(time3, time4) / max << "ms"
              << std::endl;
    std::vector<float>::iterator biggest =
        std::max_element(std::begin(vec_result), std::end(vec_result));
    std::cout << " Max element is " << *biggest << " at position "
              << std::distance(std::begin(vec_result), biggest) << std::endl;
    //        for (float i : vec_result) {
    //            std::cout << i << std::endl;
    //        }
  }
}

int main() {
  //  std::thread th1(t1);
  //    std::thread th2(t2);
  std::thread th1(t1);
  //  th1.join();
  //    th2.join();
  th1.join();
L
liuruilong 已提交
181
  return 0;
Y
yangfei 已提交
182
}