test_gemm_perf.cpp 2.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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 "../test_helper.h"
17
#include "../test_include.h"
18 19 20 21 22 23 24
#include "operators/math/gemm.h"
#include "operators/math/math_function.h"

#define a(i, j) a[(i)*lda + (j)]
#define b(i, j) b[(i)*ldb + (j)]
#define c1(i, j) c1[(i)*ldc + (j)]

Z
Zhen Wang 已提交
25 26 27
#define m 1024
#define n 1024
#define k 1024
28 29

int main() {
30
  paddle_mobile::PaddleMobile<paddle_mobile::CPU> paddle_mobile;
Z
Zhen Wang 已提交
31
  paddle_mobile.SetThreadNum(8);
Z
Zhen Wang 已提交
32
  Tensor aa, bb, cc;
33 34 35 36 37 38 39 40 41 42 43 44 45
  auto aaptr = aa.mutable_data<float>({m, k});
  auto bbptr = bb.mutable_data<float>({k, n});
  auto ccptr = cc.mutable_data<float>({m, n});

  for (int i = 0; i < m * k; ++i) {
    aaptr[i] = 2;
  }
  for (int i = 0; i < k * n; ++i) {
    bbptr[i] = 2;
  }
  for (int i = 0; i < m * n; ++i) {
    ccptr[i] = 2;
  }
Z
Zhen Wang 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59

  Tensor aa_int8, bb_int8, cc_int8;
  auto aaptr_int8 = aa_int8.mutable_data<int8_t>({m, k});
  auto bbptr_int8 = bb_int8.mutable_data<int8_t>({k, n});
  auto ccptr_int8 = cc_int8.mutable_data<int32_t>({m, n});

  for (int i = 0; i < m * k; ++i) {
    aaptr_int8[i] = static_cast<int8_t>(2);
  }
  for (int i = 0; i < k * n; ++i) {
    bbptr_int8[i] = static_cast<int8_t>(2);
  }
  for (int i = 0; i < m * n; ++i) {
    ccptr_int8[i] = static_cast<int32_t>(2);
60 61
  }

Z
Zhen Wang 已提交
62 63
  // float
  // warm-up 10 times
64
  for (int j = 0; j < 10; ++j) {
65 66
    paddle_mobile::operators::math::matmul<float>(
        aa, false, bb, false, static_cast<float>(1), &cc, static_cast<float>(0),
Z
Zhen Wang 已提交
67 68
        false, nullptr);
  }
69

Z
Zhen Wang 已提交
70 71 72 73 74
  auto time1 = time();
  for (int j = 0; j < 10; ++j) {
    paddle_mobile::operators::math::matmul<float>(
        aa, false, bb, false, static_cast<float>(1), &cc, static_cast<float>(0),
        false, nullptr);
75 76
  }
  auto time2 = time();
Z
Zhen Wang 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
  std::cout << "float gemm  cost :" << time_diff(time1, time2) / 10 << "ms\n";

  // int8_t
  // warm-up 10 times
  for (int j = 0; j < 10; ++j) {
    paddle_mobile::operators::math::matmul<int8_t>(
        aa_int8, false, bb_int8, false, static_cast<int8_t>(1), &cc_int8,
        static_cast<int8_t>(0), false, nullptr);
  }

  auto time3 = time();
  for (int j = 0; j < 10; ++j) {
    paddle_mobile::operators::math::matmul<int8_t>(
        aa_int8, false, bb_int8, false, static_cast<int8_t>(1), &cc_int8,
        static_cast<int8_t>(0), false, nullptr);
  }
  auto time4 = time();
  std::cout << "int8_t gemm  cost :" << time_diff(time3, time4) / 10 << "ms\n";
95 96 97

  return 0;
}