kernel_base.h 1.8 KB
Newer Older
T
tensor-tang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
 *
 * 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 "paddle/fluid/platform/macros.h"

namespace paddle {
namespace operators {
T
tensor-tang 已提交
20
namespace jit {
T
tensor-tang 已提交
21

22 23 24 25 26 27 28 29 30
typedef enum {
  vmul = 0,
  vadd = 1,
  vaddrelu,
  vsub,
  vscal,
  vaddbias,
  vexp
} KernelType;
T
tensor-tang 已提交
31

T
tensor-tang 已提交
32
template <typename T>
33
struct XYZNTuples {
T
tensor-tang 已提交
34 35 36 37 38
  typedef T data_type;
  typedef int attr_type;
  typedef void (*func_type)(const T*, const T*, T*, int);
};

39 40 41
template <typename T>
struct AXYNTuples : public XYZNTuples<T> {};

T
tensor-tang 已提交
42 43 44 45
// Just for adding to kernel pool without template
class Kernel {
 public:
  Kernel() = default;
T
tensor-tang 已提交
46
  virtual ~Kernel() = default;
T
tensor-tang 已提交
47 48 49
  DISABLE_COPY_AND_ASSIGN(Kernel);
};

T
tensor-tang 已提交
50
template <typename KernelTuples>
T
tensor-tang 已提交
51
class KernelImpl : public Kernel {
T
tensor-tang 已提交
52 53 54 55
  using T = typename KernelTuples::data_type;
  using Func = typename KernelTuples::func_type;
  using Attr = typename KernelTuples::attr_type;

T
tensor-tang 已提交
56
 public:
T
tensor-tang 已提交
57
  virtual Func GetFunc() const { return func; }
T
tensor-tang 已提交
58 59 60 61 62 63
  virtual bool UseMe(Attr attr) const = 0;

 protected:
  Func func{nullptr};
};

T
tensor-tang 已提交
64 65
template <typename KernelTuples>
class ReferKernel : public KernelImpl<KernelTuples> {
T
tensor-tang 已提交
66 67
 public:
  // Refer code can always be used
T
tensor-tang 已提交
68 69 70
  bool UseMe(typename KernelTuples::attr_type attr) const override {
    return true;
  }
T
tensor-tang 已提交
71 72
};

T
tensor-tang 已提交
73
}  // namespace jit
T
tensor-tang 已提交
74 75
}  // namespace operators
}  // namespace paddle