kernel_context.cc 5.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
//   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.

15
#include "paddle/phi/core/kernel_context.h"
16

17
namespace phi {
18

19
void KernelContext::EmplaceBackInput(const TensorBase* input) {
20
  int index = inputs_.size();
21
  inputs_.emplace_back(input);
22 23 24 25
  // Record the start and end index of the input
  input_range_.emplace_back(std::pair<int, int>(index, index + 1));
}

26 27
void KernelContext::EmplaceBackInputWithoutSetRange(const TensorBase* input) {
  inputs_.emplace_back(input);
28 29 30
}

void KernelContext::EmplaceBackInputs(
31
    paddle::SmallVector<const TensorBase*> inputs) {
32 33 34 35 36 37 38 39
  int index = inputs_.size();
  // Record the start and end index of the input
  input_range_.emplace_back(std::pair<int, int>(index, index + inputs.size()));
  inputs_.insert(inputs_.end(),
                 std::make_move_iterator(inputs.begin()),
                 std::make_move_iterator(inputs.end()));
}

40 41 42 43 44 45 46
void KernelContext::EmplaceBackInputsWithoutSetRange(
    paddle::SmallVector<const TensorBase*> inputs) {
  inputs_.insert(inputs_.end(),
                 std::make_move_iterator(inputs.begin()),
                 std::make_move_iterator(inputs.end()));
}

47
void KernelContext::EmplaceBackOutput(TensorBase* output) {
48
  int index = outputs_.size();
49
  outputs_.emplace_back(output);
50 51 52 53
  // Record the start and end index of the input
  output_range_.emplace_back(std::pair<int, int>(index, index + 1));
}

54 55
void KernelContext::EmplaceBackOutputWithoutSetRange(TensorBase* output) {
  outputs_.emplace_back(output);
56 57 58
}

void KernelContext::EmplaceBackOutputs(
59
    paddle::SmallVector<TensorBase*> outputs) {
60 61 62 63 64 65 66 67 68
  int index = outputs_.size();
  // Record the start and end index of the input
  output_range_.emplace_back(
      std::pair<int, int>(index, index + outputs.size()));
  outputs_.insert(outputs_.end(),
                  std::make_move_iterator(outputs.begin()),
                  std::make_move_iterator(outputs.end()));
}

69 70 71 72 73 74 75
void KernelContext::EmplaceBackOutputsWithoutSetRange(
    paddle::SmallVector<TensorBase*> outputs) {
  outputs_.insert(outputs_.end(),
                  std::make_move_iterator(outputs.begin()),
                  std::make_move_iterator(outputs.end()));
}

76
void KernelContext::EmplaceBackAttr(Attribute attr) {
77 78 79 80 81
  attrs_.emplace_back(std::move(attr));
}

void KernelContext::AssignInputRange(std::pair<int, int>&& range, size_t idx) {
  if (idx < input_range_.size()) {
82
    input_range_[idx] = std::move(range);
83 84 85
  } else if (idx == input_range_.size()) {
    input_range_.emplace_back(range);
  } else {
86
    PADDLE_THROW(phi::errors::PreconditionNotMet(
87 88 89 90 91 92 93 94 95
        "Invalid idx when trying to set InputRange, "
        "index is `%d`, it is greater than the size(%d) of InputRange.",
        idx,
        input_range_.size()));
  }
}

void KernelContext::AssignOutputRange(std::pair<int, int>&& range, size_t idx) {
  if (idx < output_range_.size()) {
96
    output_range_[idx] = std::move(range);
97 98 99
  } else if (idx == output_range_.size()) {
    output_range_.emplace_back(range);
  } else {
100
    PADDLE_THROW(phi::errors::PreconditionNotMet(
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
        "Invalid idx when trying to set InputRange, "
        "index is `%d`, it is greater than the size(%d) of InputRange.",
        idx,
        output_range_.size()));
  }
}

const std::pair<int, int>& KernelContext::InputRangeAt(size_t idx) const {
  return input_range_.at(idx);
}

const std::pair<int, int>& KernelContext::OutputRangeAt(size_t idx) const {
  return output_range_.at(idx);
}

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
template <typename AttrType>
const AttrType& KernelContext::AttrAt(size_t idx) const {
  try {
    return paddle::get<AttrType>(attrs_.at(idx));
  } catch (paddle::bad_variant_access const& ex) {
    PADDLE_THROW(phi::errors::InvalidArgument(
        "Attribute cast error in Op Kernel Context."));
  }
}

template const bool& KernelContext::AttrAt(size_t idx) const;
template const int& KernelContext::AttrAt(size_t idx) const;
template const int64_t& KernelContext::AttrAt(size_t idx) const;
template const float& KernelContext::AttrAt(size_t idx) const;
template const double& KernelContext::AttrAt(size_t idx) const;
template const std::string& KernelContext::AttrAt(size_t idx) const;
template const std::vector<bool>& KernelContext::AttrAt(size_t idx) const;
template const std::vector<int>& KernelContext::AttrAt(size_t idx) const;
template const std::vector<int64_t>& KernelContext::AttrAt(size_t idx) const;
template const std::vector<float>& KernelContext::AttrAt(size_t idx) const;
template const std::vector<double>& KernelContext::AttrAt(size_t idx) const;
template const std::vector<std::string>& KernelContext::AttrAt(
    size_t idx) const;
template const Scalar& KernelContext::AttrAt(size_t idx) const;
template const std::vector<Scalar>& KernelContext::AttrAt(size_t idx) const;
template const IntArray& KernelContext::AttrAt(size_t idx) const;
template const DataType& KernelContext::AttrAt(size_t idx) const;
template const DataLayout& KernelContext::AttrAt(size_t idx) const;
template const Place& KernelContext::AttrAt(size_t idx) const;

146
}  // namespace phi