mul_op.h 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* 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
Y
Yu Yang 已提交
16

Q
qijun 已提交
17
#include "paddle/operators/math/math_function.h"
18
#include "paddle/operators/type_alias.h"
19 20 21 22

namespace paddle {
namespace operators {

Q
qijun 已提交
23
template <typename Place, typename T>
24
class MulKernel : public OpKernel {
25
public:
26
  void Compute(const ExecutionContext& context) const override {
L
liaogang 已提交
27 28
    auto input0 = context.Input<Tensor>("X");
    auto input1 = context.Input<Tensor>("Y");
29
    auto output = context.Output<Tensor>(0);
L
liaogang 已提交
30

Q
qijun 已提交
31 32
    output->mutable_data<T>(context.GetPlace());

Q
qijun 已提交
33 34 35 36 37 38 39
    auto out_dim = output->dims();
    auto in0_dim = input0->dims();

    int M = out_dim[0];
    int N = out_dim[1];
    int K = in0_dim[1];

Q
qijun 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
    paddle::operators::math::template gemm<Place, T>(
        CblasNoTrans,
        CblasNoTrans,
        M,
        N,
        K,
        1,
        input0->data<T>(),
        K,
        input1->data<T>(),
        N,
        0,
        output->data<T>(),
        N,
        &const_cast<platform::DeviceContext&>(context.device_context()));
55 56
  }
};
Q
qijun 已提交
57

58 59
}  // namespace operators
}  // namespace paddle