kernel_context.h 4.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//   Copyright (c) 2021 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

17
#include <iterator>
18 19
#include <utility>

20
#include "paddle/phi/core/attribute.h"
21 22 23 24
#include "paddle/phi/core/device_context.h"
#include "paddle/phi/core/enforce.h"
#include "paddle/phi/core/tensor_base.h"
#include "paddle/phi/core/tensor_utils.h"
25
#include "paddle/phi/core/type_defs.h"
26
#include "paddle/utils/optional.h"
27 28
#include "paddle/utils/small_vector.h"

29
namespace phi {
30 31

/**
32
 * Note: KernelContext doesn't manage the life of DeviceContext and Tensor
33 34 35 36 37 38 39
 *
 * Note: KernelContext does not couple the concept of framework,
 *       its constructor can only take the members it needs as parameters,
 *       not Scope, RuntimeContext, etc. as parameters
 */
class KernelContext {
 public:
40 41 42 43
  KernelContext() = default;
  explicit KernelContext(DeviceContext* dev_ctx) : dev_ctx_(dev_ctx) {}

  void SetDeviceContext(DeviceContext* dev_ctx) { dev_ctx_ = dev_ctx; }
44 45 46

  template <typename CtxType>
  const CtxType& GetDeviceContext() const {
47
    return static_cast<const CtxType&>(*dev_ctx_);
48 49
  }

50
  void EmplaceBackInput(const TensorBase* input);
51

52
  void EmplaceBackInputWithoutSetRange(const TensorBase* input);
53

54
  void EmplaceBackInputs(paddle::SmallVector<const TensorBase*> inputs);
55

56 57 58
  void EmplaceBackInputsWithoutSetRange(
      paddle::SmallVector<const TensorBase*> inputs);

59
  void EmplaceBackOutput(TensorBase* output);
60

61
  void EmplaceBackOutputWithoutSetRange(TensorBase* output);
62

63
  void EmplaceBackOutputs(paddle::SmallVector<TensorBase*> outputs);
64

65 66 67
  void EmplaceBackOutputsWithoutSetRange(
      paddle::SmallVector<TensorBase*> outputs);

68
  void EmplaceBackAttr(Attribute attr);
69 70 71 72 73

  const std::pair<int, int>& InputRangeAt(size_t idx) const;

  const std::pair<int, int>& OutputRangeAt(size_t idx) const;

74
  void AssignInputRange(std::pair<int, int>&& range, size_t idx);
75

76
  void AssignOutputRange(std::pair<int, int>&& range, size_t idx);
77 78 79 80 81 82

  template <typename TensorType>
  const TensorType& InputAt(size_t idx) const {
    return static_cast<const TensorType&>(*(inputs_.at(idx)));
  }

83 84 85 86 87 88 89 90
  template <typename TensorType>
  paddle::optional<const TensorType&> OptionalInputAt(size_t idx) const {
    const auto& input = inputs_.at(idx);
    return input ? paddle::optional<const TensorType&>{static_cast<
                       const TensorType&>(*input)}
                 : paddle::optional<const TensorType&>{paddle::none};
  }

91
  template <typename TensorType>
92 93
  std::vector<const TensorType*> InputsBetween(size_t start, size_t end) {
    std::vector<const TensorType*> v;
94
    for (size_t i = start; i < end; ++i) {
95 96
      auto* t = static_cast<const TensorType*>(inputs_.at(i));
      v.emplace_back(t);
97 98 99 100
    }
    return v;
  }

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
  template <typename TensorType>
  paddle::optional<const std::vector<const TensorType*>> OptionalInputsBetween(
      size_t start, size_t end) {
    const auto& first = inputs_.at(start);

    if (first) {
      std::vector<const TensorType*> v;
      for (size_t i = start; i < end; ++i) {
        auto* t = static_cast<const TensorType*>(inputs_.at(i));
        v.emplace_back(t);
      }
      return paddle::optional<const std::vector<const TensorType*>>(v);
    }
    return paddle::optional<const std::vector<const TensorType*>>(paddle::none);
  }

117 118
  template <typename TensorType>
  TensorType* MutableOutputAt(size_t idx) {
119
    return static_cast<TensorType*>(outputs_.at(idx));
120 121
  }

122 123 124 125
  template <typename TensorType>
  std::vector<TensorType*> MutableOutputBetween(size_t start, size_t end) {
    std::vector<TensorType*> v;
    for (size_t i = start; i < end; ++i) {
126
      v.emplace_back(static_cast<TensorType*>(outputs_.at(i)));
127 128 129 130
    }
    return v;
  }

131
  template <typename AttrType>
132
  const AttrType& AttrAt(size_t idx) const;
133

134 135 136 137
  size_t InputsSize() const { return inputs_.size(); }
  size_t OutputsSize() const { return outputs_.size(); }
  size_t AttrsSize() const { return attrs_.size(); }

138
 private:
139
  DeviceContext* dev_ctx_;
140

141 142
  paddle::SmallVector<const TensorBase*> inputs_;
  paddle::SmallVector<TensorBase*> outputs_;
143
  paddle::SmallVector<Attribute, kAttrSmallVectorSize> attrs_;
144

145 146 147
  paddle::SmallVector<std::pair<int, int>, kInputSmallVectorSize> input_range_;
  paddle::SmallVector<std::pair<int, int>, kOutputSmallVectorSize>
      output_range_;
148 149
};

150
}  // namespace phi