math_function.h 1.4 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
            framework::Tensor *matrix_out, T beta, bool relu = false, float *bias = nullptr);
28 29 30 31 32

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 已提交
33 34
                  framework::Tensor *new_scale, framework::Tensor *new_bias,
                  int group);
朔-望's avatar
朔-望 已提交
35 36 37
}  // namespace math
}  // namespace operators
}  // namespace paddle_mobile