test_super.cpp 5.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* 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>
#include "../../src/common/types.h"
#include "../test_helper.h"
#include "../test_include.h"

int main() {
L
liuruilong 已提交
21 22 23
  paddle_mobile::PaddleMobileConfigInternal config;
  config.load_when_predict = true;

L
liuruilong 已提交
24
  paddle_mobile::PaddleMobile<paddle_mobile::CPU> paddle_mobile(config);
25 26
  //    paddle_mobile.SetThreadNum(4);
  auto time1 = paddle_mobile::time();
27
#ifdef PADDLE_MOBILE_CL
28
  paddle_mobile.SetCLPath("/data/local/tmp/bin");
29 30
#endif

31 32
  auto isok = paddle_mobile.Load(std::string(g_super) + "/model",
                                 std::string(g_super) + "/params", true, false,
L
liuruilong 已提交
33
                                 1, false);
34

35 36 37 38 39
  //  auto isok = paddle_mobile.Load(std::string(g_mobilenet_mul), true);
  if (isok) {
    auto time2 = paddle_mobile::time();
    std::cout << "load cost :" << paddle_mobile::time_diff(time1, time2) << "ms"
              << std::endl;
40
    // 300*300
L
liuruilong 已提交
41 42 43 44 45
//    std::vector<float> input;
//    std::vector<int64_t> dims{1, 1, 300, 300};
//    GetInput<float>(g_test_image_1x3x224x224, &input, dims);
//
//    std::vector<float> vec_result;
46

47
    auto time3 = paddle_mobile::time();
L
liuruilong 已提交
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
    int max = 1;

//    for (int i = 0; i < max; ++i) {
//      auto time5 = paddle_mobile::time();
//      vec_result = paddle_mobile.Predict(input, dims);
//      auto time6 = paddle_mobile::time();
//      std::cout << "300 predict cost :第" << i << ": "
//                << paddle_mobile::time_diff(time5, time6) << "ms" << std::endl;
//    }
//    auto time4 = paddle_mobile::time();
//
//    std::cout << "300 predict cost :"
//              << paddle_mobile::time_diff(time3, time4) / max << "ms"
//              << std::endl;
//    auto biggest =
//        std::max_element(std::begin(vec_result), std::end(vec_result));
//    std::cout << "300 Max element is " << *biggest << " at position "
//              << std::distance(std::begin(vec_result), biggest) << std::endl;
//
//    // 500*500
//    std::vector<float> vec_result2;
//
//    std::vector<float> input2;
//    std::vector<int64_t> dims2{1, 1, 500, 500};
//    GetInput<float>(g_test_image_1x3x224x224, &input2, dims2);
//
//    time3 = paddle_mobile::time();
//    for (int i = 0; i < max; ++i) {
//      auto time5 = paddle_mobile::time();
//      vec_result2 = paddle_mobile.Predict(input2, dims2);
//      auto time6 = paddle_mobile::time();
//      std::cout << "500 predict cost :第" << i << ": "
//                << paddle_mobile::time_diff(time5, time6) << "ms" << std::endl;
//    }
//
//    time4 = paddle_mobile::time();
//    std::cout << "500 predict cost :"
//              << paddle_mobile::time_diff(time3, time4) / max << "ms"
//              << std::endl;
//    biggest = std::max_element(std::begin(vec_result2), std::end(vec_result2));
//    std::cout << "500 Max element is " << *biggest << " at position "
//              << std::distance(std::begin(vec_result2), biggest) << std::endl;
//
//    // 1000*1000
//
//    std::vector<float> vec_result3;
//    std::vector<float> input3;
//    std::vector<int64_t> dims3{1, 1, 1000, 1000};
//    GetInput<float>(g_test_image_1x3x224x224, &input3, dims3);
//
//    time3 = paddle_mobile::time();
//
//    for (int i = 0; i < max; ++i) {
//      auto time5 = paddle_mobile::time();
//      vec_result3 = paddle_mobile.Predict(input3, dims3);
//      auto time6 = paddle_mobile::time();
//      std::cout << "1000*1000 predict cost :第" << i << ": "
//                << paddle_mobile::time_diff(time5, time6) << "ms" << std::endl;
//    }
//    time4 = paddle_mobile::time();
//    std::cout << "1000*1000 predict cost :"
//              << paddle_mobile::time_diff(time3, time4) / max << "ms"
//              << std::endl;
//    biggest = std::max_element(std::begin(vec_result3), std::end(vec_result3));
//    std::cout << "1000*1000 Max element is " << *biggest << " at position "
//              << std::distance(std::begin(vec_result3), biggest) << std::endl;
114 115 116 117

    // 224*224
    std::vector<float> vec_result4;
    std::vector<float> input4;
L
liuruilong 已提交
118
    std::vector<int64_t> dims4{1, 1, 300, 300};
119 120 121 122 123 124 125 126 127 128 129
    GetInput<float>(g_test_image_1x3x224x224, &input4, dims4);

    time3 = paddle_mobile::time();
    for (int i = 0; i < max; ++i) {
      auto time5 = paddle_mobile::time();
      vec_result4 = paddle_mobile.Predict(input4, dims4);
      auto time6 = paddle_mobile::time();
      std::cout << "224*224 predict cost :第" << i << ": "
                << paddle_mobile::time_diff(time5, time6) << "ms" << std::endl;
    }

L
liuruilong 已提交
130
    auto time4 = paddle_mobile::time();
131 132 133
    std::cout << "224*224 predict cost :"
              << paddle_mobile::time_diff(time3, time4) / max << "ms"
              << std::endl;
L
liuruilong 已提交
134 135 136
//    biggest = std::max_element(std::begin(vec_result4), std::end(vec_result4));
//    std::cout << "224*224 Max element is " << *biggest << " at position "
//              << std::distance(std::begin(vec_result4), biggest) << std::endl;
137 138 139
  }

  return 0;
140
}