math_function.cpp 3.0 KB
Newer Older
Z
zhaojiaying01 已提交
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
朔-望's avatar
朔-望 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

Z
zhaojiaying01 已提交
15
#include "operators/math/math_function.h"
Z
zhaojiaying01 已提交
16
#include "operators/math/gemm.h"
朔-望's avatar
朔-望 已提交
17 18

namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
19 20 21
namespace operators {
namespace math {

朔-望's avatar
朔-望 已提交
22
template <>
朔-望's avatar
朔-望 已提交
23
void matmul<float>(const framework::Tensor &matrix_a, bool trans_a,
朔-望's avatar
朔-望 已提交
24
                   const framework::Tensor &matrix_b, bool trans_b, float alpha,
L
liuruilong 已提交
25
                   framework::Tensor *matrix_out, float beta, bool relu) {
26 27 28
  auto dim_a = matrix_a.dims();
  auto dim_b = matrix_b.dims();
  auto dim_out = matrix_out->dims();
Z
zhaojiaying01 已提交
29 30 31 32 33 34 35 36 37 38
  //  PADDLE_ENFORCE(dim_a.size() == 2 && dim_b.size() == 2 &&
  //  dim_out.size() ==
  //  2,
  //                 "The input and output of matmul be matrix");
  //
  //  PADDLE_ENFORCE(platform::is_cpu_place(matrix_a.place()) &&
  //                     platform::is_cpu_place(matrix_b.place())
  //                     &&
  //                     platform::is_cpu_place(matrix_out->place()),
  //                 "Matrix must all be in CPUPlace");
39 40 41

  int M = dim_out[0];
  int N = dim_out[1];
42
  int K = (!trans_a) ? dim_a[1] : dim_a[0];
43

Z
zhaojiaying01 已提交
44 45
  Sgemm(M, N, K, alpha, matrix_a.data<float>(), K, matrix_b.data<float>(), N,
        beta, matrix_out->data<float>(), N, relu);
朔-望's avatar
朔-望 已提交
46 47
}

朔-望's avatar
朔-望 已提交
48
template <>
49 50 51 52
void matmulWithBn<float>(const framework::Tensor &matrix_a, bool trans_a,
                         const framework::Tensor &matrix_b, bool trans_b,
                         float alpha, framework::Tensor *matrix_out, float beta,
                         bool relu, framework::Tensor *new_scale,
E
eclipsess 已提交
53
                         framework::Tensor *new_bias, int group) {
54 55 56
  auto dim_a = matrix_a.dims();
  auto dim_b = matrix_b.dims();
  auto dim_out = matrix_out->dims();
Z
zhaojiaying01 已提交
57 58 59 60 61 62 63 64 65 66
  //  PADDLE_ENFORCE(dim_a.size() == 2 && dim_b.size() == 2 &&
  //  dim_out.size() ==
  //  2,
  //                 "The input and output of matmul be matrix");
  //
  //  PADDLE_ENFORCE(platform::is_cpu_place(matrix_a.place()) &&
  //                     platform::is_cpu_place(matrix_b.place())
  //                     &&
  //                     platform::is_cpu_place(matrix_out->place()),
  //                 "Matrix must all be in CPUPlace");
67 68 69

  int M = dim_out[0];
  int N = dim_out[1];
70 71
  int K = (!trans_a) ? dim_a[1] : dim_a[0];

Z
zhaojiaying01 已提交
72 73
  SgemmWithBn(M, N, K, alpha, matrix_a.data<float>(), K, matrix_b.data<float>(),
              N, beta, matrix_out->data<float>(), N, relu,
E
eclipsess 已提交
74 75
              new_scale->data<float>() + group,
              new_bias->data<float>() + group);
朔-望's avatar
朔-望 已提交
76 77
}

朔-望's avatar
朔-望 已提交
78 79 80
}  // namespace math
}  // namespace operators
}  // namespace paddle_mobile