/* 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 #include "../test_helper.h" #include "../test_include.h" #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)] #define m 1024 #define n 1024 #define k 1024 int main() { paddle_mobile::PaddleMobile paddle_mobile; paddle_mobile.SetThreadNum(4); Tensor aa, bb, cc; auto aaptr = aa.mutable_data({m, k}); auto bbptr = bb.mutable_data({k, n}); auto ccptr = cc.mutable_data({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; } Tensor aa_int8, bb_int8, cc_int32, cc_int8; auto aaptr_int8 = aa_int8.mutable_data({m, k}); auto bbptr_int8 = bb_int8.mutable_data({k, n}); auto ccptr_int32 = cc_int32.mutable_data({m, n}); auto ccptr_int8 = cc_int8.mutable_data({m, n}); int32_t* bias_data_col = new int32_t[m]; int32_t* bias_data_row = new int32_t[n]; for (int i = 0; i < m * k; ++i) { aaptr_int8[i] = static_cast(2); } for (int i = 0; i < k * n; ++i) { bbptr_int8[i] = static_cast(2); } for (int i = 0; i < m * n; ++i) { ccptr_int32[i] = static_cast(2); } for (int i = 0; i < m; ++i) { bias_data_col[i] = 2; } for (int i = 0; i < n; ++i) { bias_data_row[i] = 2; } // float // warm-up 10 times for (int j = 0; j < 10; ++j) { paddle_mobile::operators::math::matmul( aa, false, bb, false, static_cast(1), &cc, static_cast(0), false, nullptr); } auto time_start0 = time(); for (int j = 0; j < 10; ++j) { paddle_mobile::operators::math::matmul( aa, false, bb, false, static_cast(1), &cc, static_cast(0), false, nullptr); } auto time_end0 = time(); std::cout << "float gemm cost :" << time_diff(time_start0, time_end0) / 10 << "ms\n"; // int8_t without bias // warm-up 10 times for (int j = 0; j < 10; ++j) { paddle_mobile::operators::math::matmul( aa_int8, false, bb_int8, false, static_cast(1), &cc_int32, static_cast(0)); } auto time_start1 = time(); for (int j = 0; j < 10; ++j) { paddle_mobile::operators::math::matmul( aa_int8, false, bb_int8, false, static_cast(1), &cc_int32, static_cast(0)); } auto time_end1 = time(); std::cout << "int8_t gemm cost :" << time_diff(time_start1, time_end1) / 10 << "ms\n"; // int8_t with bias, column element wise add // warm-up 10 times for (int j = 0; j < 10; ++j) { paddle_mobile::operators::math::matmul( aa_int8, false, bb_int8, false, static_cast(0.618), &cc_int8, static_cast(0), false, bias_data_col, false); } auto time_start2 = time(); for (int j = 0; j < 10; ++j) { paddle_mobile::operators::math::matmul( aa_int8, false, bb_int8, false, static_cast(0.618), &cc_int8, static_cast(0), false, bias_data_col, false); } auto time_end2 = time(); std::cout << "int8_t gemm_with_bias(column add) cost :" << time_diff(time_start2, time_end2) / 10 << "ms\n"; // int8_t with bias, row element wise add // warm-up 10 times for (int j = 0; j < 10; ++j) { paddle_mobile::operators::math::matmul( aa_int8, false, bb_int8, false, static_cast(0.618), &cc_int8, static_cast(0), false, bias_data_row, true); } auto time_start3 = time(); for (int j = 0; j < 10; ++j) { paddle_mobile::operators::math::matmul( aa_int8, false, bb_int8, false, static_cast(0.618), &cc_int8, static_cast(0), false, bias_data_row, true); } auto time_end3 = time(); std::cout << "int8_t gemm_with_bias(row add) cost :" << time_diff(time_start3, time_end3) / 10 << "ms\n"; // int8_t with bias&relu // warm-up 10 times for (int j = 0; j < 10; ++j) { paddle_mobile::operators::math::matmul( aa_int8, false, bb_int8, false, static_cast(0.618), &cc_int8, static_cast(0), true, bias_data_col, false); } auto time_start4 = time(); for (int j = 0; j < 10; ++j) { paddle_mobile::operators::math::matmul( aa_int8, false, bb_int8, false, static_cast(0.618), &cc_int8, static_cast(0), true, bias_data_col, false); } auto time_end4 = time(); std::cout << "int8_t gemm_with_bias_relu cost :" << time_diff(time_start4, time_end4) / 10 << "ms\n"; delete[] bias_data_row; delete[] bias_data_col; return 0; }