math_function.h 2.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. */

15
#pragma once
朔-望's avatar
朔-望 已提交
16 17

#include <cmath>
朔-望's avatar
朔-望 已提交
18
#include "framework/tensor.h"
朔-望's avatar
朔-望 已提交
19 20

namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
21 22 23
namespace operators {
namespace math {

朔-望's avatar
朔-望 已提交
24
template <typename T>
朔-望's avatar
朔-望 已提交
25
void matmul(const framework::Tensor &matrix_a, bool trans_a,
朔-望's avatar
朔-望 已提交
26
            const framework::Tensor &matrix_b, bool trans_b, T alpha,
27 28
            framework::Tensor *matrix_out, T beta, bool relu = false,
            float *bias = nullptr);
29 30 31 32 33

template <typename T>
void matmulWithBn(const framework::Tensor &matrix_a, bool trans_a,
                  const framework::Tensor &matrix_b, bool trans_b, T alpha,
                  framework::Tensor *matrix_out, T beta, bool relu,
E
eclipsess 已提交
34
                  framework::Tensor *new_scale, framework::Tensor *new_bias,
Y
yangfei 已提交
35
                  int group, float *bias = nullptr);
36 37 38 39 40

void matmulWithPRelu(const framework::Tensor &matrix_a, bool trans_a,
                     const framework::Tensor &matrix_b, bool trans_b,
                     framework::Tensor *matrix_out, float *p, std::string mode,
                     float *bias, float *bias1);
xiebaiyuan's avatar
xiebaiyuan 已提交
41 42 43 44 45 46 47 48 49 50 51
template <typename DeviceType, typename T>
struct ClearTensor {
  void operator()(framework::Tensor *tensor);
};

template <typename DeviceType, typename T>
struct RowwiseAdd {
  void operator()(const framework::Tensor &input, const framework::Tensor &vec,
                  framework::Tensor *output);
};

朔-望's avatar
朔-望 已提交
52 53 54
}  // namespace math
}  // namespace operators
}  // namespace paddle_mobile