test_yologpu.cpp 6.2 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
void t1() {
21 22
  paddle_mobile::PaddleMobile<paddle_mobile::GPU_CL> paddle_mobile_gpu;
  paddle_mobile::PaddleMobile<paddle_mobile::CPU> paddle_mobile_cpu;
23 24
  //    paddle_mobile.SetThreadNum(4);
#ifdef PADDLE_MOBILE_CL
25
  paddle_mobile_gpu.SetCLPath("/data/local/tmp/bin");
26
#endif
27 28
  printf("cpu time:%f\n", paddle_mobile_cpu.GetPredictTime());
  printf("gpu time:%f\n", paddle_mobile_gpu.GetPredictTime());
29
  auto time1 = paddle_mobile::time();
30 31
  auto isok = paddle_mobile_gpu.Load(std::string(g_yolo_mul) + "/model",
                                     std::string(g_yolo_mul) + "/params", true);
Y
yangfei 已提交
32

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
  //  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) {
49
      vec_result = paddle_mobile_gpu.Predict(input, dims);
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
    }
    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 已提交
75 76
  paddle_mobile::PaddleMobile<paddle_mobile::GPU_CL> paddle_mobile;
  //    paddle_mobile.SetThreadNum(4);
77 78 79
#ifdef PADDLE_MOBILE_CL
  paddle_mobile.SetCLPath("/data/local/tmp/bin");
#endif
L
liuruilong 已提交
80
  auto time1 = paddle_mobile::time();
81 82
  auto isok = paddle_mobile.Load(std::string(g_yolo_mul) + "/model",
                                 std::string(g_yolo_mul) + "/params", true);
Y
yangfei 已提交
83

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

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

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

L
liuruilong 已提交
97 98 99 100 101 102
    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 已提交
103

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

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

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

L
liuruilong 已提交
112 113 114 115 116 117 118 119 120 121 122
    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;
    //        }
  }
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
}

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);
177 178 179 180 181 182
  //      std::thread th2(t2);
  std::thread th3(t3);
  //  std::thread th1(t1);
  //  th1.join();
  //      th2.join();
  th3.join();
183
  //  th1.join();
L
liuruilong 已提交
184
  return 0;
Y
yangfei 已提交
185
}