kernel_base.h 1.7 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
typedef enum { vmul = 0, vadd = 1, vaddrelu, vsub, vscal, vexp } KernelType;
T
tensor-tang 已提交
23

T
tensor-tang 已提交
24
template <typename T>
25
struct XYZNTuples {
T
tensor-tang 已提交
26 27 28 29 30
  typedef T data_type;
  typedef int attr_type;
  typedef void (*func_type)(const T*, const T*, T*, int);
};

T
tensor-tang 已提交
31 32 33 34
// Just for adding to kernel pool without template
class Kernel {
 public:
  Kernel() = default;
T
tensor-tang 已提交
35
  virtual ~Kernel() = default;
T
tensor-tang 已提交
36 37 38
  DISABLE_COPY_AND_ASSIGN(Kernel);
};

T
tensor-tang 已提交
39
template <typename KernelTuples>
T
tensor-tang 已提交
40
class KernelImpl : public Kernel {
T
tensor-tang 已提交
41 42 43 44
  using T = typename KernelTuples::data_type;
  using Func = typename KernelTuples::func_type;
  using Attr = typename KernelTuples::attr_type;

T
tensor-tang 已提交
45
 public:
T
tensor-tang 已提交
46
  virtual Func GetFunc() const { return func; }
T
tensor-tang 已提交
47 48 49 50 51 52
  virtual bool UseMe(Attr attr) const = 0;

 protected:
  Func func{nullptr};
};

T
tensor-tang 已提交
53 54
template <typename KernelTuples>
class ReferKernel : public KernelImpl<KernelTuples> {
T
tensor-tang 已提交
55 56
 public:
  // Refer code can always be used
T
tensor-tang 已提交
57 58 59
  bool UseMe(typename KernelTuples::attr_type attr) const override {
    return true;
  }
T
tensor-tang 已提交
60 61
};

T
tensor-tang 已提交
62
}  // namespace jit
T
tensor-tang 已提交
63 64
}  // namespace operators
}  // namespace paddle