kernel_context.h 4.9 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/pten/core/compat_utils.h"
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
#include "paddle/pten/core/tensor_base.h"
#include "paddle/utils/any.h"
#include "paddle/utils/small_vector.h"

// See Note [ Why still include the fluid headers? ]
#include "paddle/fluid/platform/device_context.h"
#include "paddle/fluid/platform/enforce.h"

namespace pten {

using DeviceContext = paddle::platform::DeviceContext;
using DataType = paddle::experimental::DataType;
using DataLayout = paddle::experimental::DataLayout;

/**
 * Note: KernelContext doesn't manage the life if DeviceContext and Tensor
 *
 * 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:
44 45 46 47
  KernelContext() = default;
  explicit KernelContext(DeviceContext* dev_ctx) : dev_ctx_(dev_ctx) {}

  void SetDeviceContext(DeviceContext* dev_ctx) { dev_ctx_ = dev_ctx; }
48 49 50

  template <typename CtxType>
  const CtxType& GetDeviceContext() const {
51
    return static_cast<const CtxType&>(*dev_ctx_);
52 53
  }

54
  void EmplaceBackInput(const TensorBase* input);
55

56
  void EmplaceBackInputWithoutSetRange(const TensorBase* input);
57

58
  void EmplaceBackInputs(paddle::SmallVector<const TensorBase*> inputs);
59

60
  void EmplaceBackOutput(TensorBase* output);
61

62
  void EmplaceBackOutputWithoutSetRange(TensorBase* output);
63

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

66
  void SetOutputWithoutSetRange(int index, TensorBase* output);
67

68 69 70 71 72 73 74 75 76
  void EmplaceBackAttr(paddle::any attr);

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

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

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

  std::pair<int, int>& MutableOutputRangeAt(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
  std::vector<TensorType> MoveInputsBetween(size_t start, size_t end) {
93 94
    std::vector<TensorType> v;
    for (size_t i = start; i < end; ++i) {
95
      auto t = static_cast<const TensorType*>(inputs_.at(i));
96
      v.emplace_back(*t);
97
      inputs_.at(i) = nullptr;
98 99 100 101
    }
    return v;
  }

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

104
  void AssignOutputRange(std::pair<int, int>&& range, size_t idx);
105

106 107
  template <typename TensorType>
  TensorType* MutableOutputAt(size_t idx) {
108
    return static_cast<TensorType*>(outputs_.at(idx));
109 110
  }

111 112 113 114
  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) {
115
      v.emplace_back(static_cast<TensorType*>(outputs_.at(i)));
116 117 118 119 120
    }

    return v;
  }

121 122 123 124 125 126 127 128 129 130
  template <typename AttrType>
  AttrType AttrAt(size_t idx) const {
    try {
      return paddle::any_cast<AttrType>(attrs_.at(idx));
    } catch (paddle::bad_any_cast&) {
      PADDLE_THROW(paddle::platform::errors::InvalidArgument(
          "Attribute cast error in Op Kernel Context."));
    }
  }

131 132
  // Temporary method: For compatible with fluid Tensor and improve performance
  // Only deal with DenseTensor now
133
  void ClearData();
134 135 136 137 138

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

139 140
 private:
  // DeviceContext base class
141
  DeviceContext* dev_ctx_;
142 143 144

  // TODO(chenweihang): Tensor -> Tensor*, Tensor should by managed `scope`
  // Note: can't use API Tensor here, the inference don't use this API Tensor
145 146
  paddle::SmallVector<const TensorBase*> inputs_;
  paddle::SmallVector<TensorBase*> outputs_;
147 148 149 150 151 152 153 154
  paddle::SmallVector<paddle::any> attrs_;

  // Only contains input like list[Tensor] need `range`
  paddle::SmallVector<std::pair<int, int>> input_range_;
  paddle::SmallVector<std::pair<int, int>> output_range_;
};

}  // namespace pten