gen_base.h 2.1 KB
Newer Older
T
tensor-tang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* 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 <gflags/gflags.h>
T
tensor-tang 已提交
18
#include <memory>  // for unique_ptr
T
tensor-tang 已提交
19
#include "paddle/fluid/operators/jit/kernel_base.h"
T
tensor-tang 已提交
20 21 22 23 24

DECLARE_bool(dump_jitcode);

namespace paddle {
namespace operators {
T
tensor-tang 已提交
25
namespace jit {
T
tensor-tang 已提交
26

T
tensor-tang 已提交
27
class GenBase : public Kernel {
T
tensor-tang 已提交
28
 public:
T
tensor-tang 已提交
29
  virtual ~GenBase() = default;
T
tensor-tang 已提交
30
  virtual const char* name() const = 0;
T
tensor-tang 已提交
31
  virtual size_t getSize() const = 0;
T
tensor-tang 已提交
32
  virtual const unsigned char* getCodeInternal() = 0;
T
tensor-tang 已提交
33 34
  template <typename Func>
  Func getCode() {
T
tensor-tang 已提交
35 36 37 38
    const unsigned char* code = this->getCodeInternal();
    if (FLAGS_dump_jitcode) {
      this->dumpCode(code);
    }
39 40
    // Note: failed to cast with reinterpret_cast<const Func> on Mac clang,
    // then workaround with const_cast. Any better idea is appreciated.
T
tensor-tang 已提交
41
    return reinterpret_cast<Func>(const_cast<unsigned char*>(code));
T
tensor-tang 已提交
42 43 44
  }

 protected:
T
tensor-tang 已提交
45
  void dumpCode(const unsigned char* code) const;
T
tensor-tang 已提交
46 47
};

T
tensor-tang 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
// Creator is used to creat the jitcode and save in pool.
// Every JitCode should have one creator.
class GenCreator {
 public:
  virtual ~GenCreator() = default;
};

template <typename Attr>
class JitCodeCreator : public GenCreator {
 public:
  virtual ~JitCodeCreator() = default;

  // condition when this jit code can be used.
  virtual bool UseMe(const Attr& attr) const = 0;

  // estimate this code size
  virtual size_t CodeSize(const Attr& attr) const = 0;

  // create this code
  virtual std::unique_ptr<GenBase> CreateJitCode(const Attr& attr) const = 0;
};
T
tensor-tang 已提交
69

T
tensor-tang 已提交
70
}  // namespace jit
T
tensor-tang 已提交
71 72
}  // namespace operators
}  // namespace paddle