MulOp.h 3.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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

#pragma once

#include "Function.h"
#include "paddle/math/Matrix.h"
#include "paddle/math/SparseMatrix.h"

namespace paddle {
22
/// CPU, dense matrix (+)= dense matrix * dense matrix
23 24 25 26 27
template <DeviceType DType>
void MulOp(CpuMatrix& out,
           const CpuMatrix& a,
           const CpuMatrix& b,
           real scaleAB,
X
xutianbing 已提交
28 29 30 31
           real scaleT,
           bool aTrans,
           bool bTrans,
           bool cTrans);
32

33
/// CPU, dense matrix (+)= sparse matrix * dense matrix
34 35 36 37 38
template <DeviceType DType>
void MulOp(CpuMatrix& out,
           const CpuSparseMatrix& a,
           const CpuMatrix& b,
           real scaleAB,
X
xutianbing 已提交
39 40 41 42
           real scaleT,
           bool aTrans,
           bool bTrans,
           bool cTrans);
43

44
/// CPU, dense matrix (+)= dense matrix * sparse matrix
45 46 47 48 49
template <DeviceType DType>
void MulOp(CpuMatrix& out,
           const CpuMatrix& a,
           const CpuSparseMatrix& b,
           real scaleAB,
X
xutianbing 已提交
50 51 52 53
           real scaleT,
           bool aTrans,
           bool bTrans,
           bool cTrans);
54

55
/// CPU, sparse matrix (+)= dense matrix * dense matrix
56 57 58 59 60
template <DeviceType DType>
void MulOp(CpuSparseMatrix& out,
           const CpuMatrix& a,
           const CpuMatrix& b,
           real scaleAB,
X
xutianbing 已提交
61 62 63 64
           real scaleT,
           bool aTrans,
           bool bTrans,
           bool cTrans);
65

66
/// GPU, dense matrix (+)= dense matrix * dense matrix
67 68 69 70 71
template <DeviceType DType>
void MulOp(GpuMatrix& out,
           const GpuMatrix& a,
           const GpuMatrix& b,
           real scaleAB,
X
xutianbing 已提交
72 73 74 75
           real scaleT,
           bool aTrans,
           bool bTrans,
           bool cTrans);
76

77
/// GPU, dense matrix (+)= sparse matrix * dense matrix
78 79 80 81 82
template <DeviceType DType>
void MulOp(GpuMatrix& out,
           const GpuSparseMatrix& a,
           const GpuMatrix& b,
           real scaleAB,
X
xutianbing 已提交
83 84 85 86
           real scaleT,
           bool aTrans,
           bool bTrans,
           bool cTrans);
87

88
/// GPU, dense matrix (+)= dense matrix * sparse matrix
89 90 91 92 93
template <DeviceType DType>
void MulOp(GpuMatrix& out,
           const GpuMatrix& a,
           const GpuSparseMatrix& b,
           real scaleAB,
X
xutianbing 已提交
94 95 96 97
           real scaleT,
           bool aTrans,
           bool bTrans,
           bool cTrans);
98
/// GPU, sparse matrix (+)= dense matrix * dense matrix
99 100 101 102 103
template <DeviceType DType>
void MulOp(GpuSparseMatrix& out,
           const GpuMatrix& a,
           const GpuMatrix& b,
           real scaleAB,
X
xutianbing 已提交
104 105 106 107
           real scaleT,
           bool aTrans,
           bool bTrans,
           bool cTrans);
108

109
}  // namespace paddle