infermeta_utils.cc 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2022 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/infermeta_utils.h"
16

17
namespace phi {
18 19 20 21 22

void InferMetaContext::SetMetaConfig(MetaConfig config) {
  config_ = std::move(config);
}

23
void InferMetaContext::EmplaceBackInput(MetaTensor input) {
24 25 26 27
  int index = inputs_.size();
  inputs_.emplace_back(std::move(input));
  input_range_.emplace_back(std::pair<int, int>(index, index + 1));
}
28
void InferMetaContext::EmplaceBackOutput(MetaTensor output) {
29 30 31 32 33 34 35 36 37
  int index = outputs_.size();
  outputs_.emplace_back(std::move(output));
  output_range_.emplace_back(std::pair<int, int>(index, index + 1));
}
void InferMetaContext::EmplaceBackAttr(paddle::any attr) {
  attrs_.emplace_back(std::move(attr));
}

void InferMetaContext::EmplaceBackInputs(
38
    paddle::SmallVector<MetaTensor, phi::kInputSmallVectorSize> inputs) {
39 40 41 42 43 44 45
  int index = inputs_.size();
  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()));
}
void InferMetaContext::EmplaceBackOutputs(
46
    paddle::SmallVector<MetaTensor, phi::kOutputSmallVectorSize> outputs) {
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
  int index = outputs_.size();
  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()));
}

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

const MetaConfig& InferMetaContext::GetMetaConfig() const { return config_; }

const MetaTensor& InferMetaContext::InputAt(size_t idx) const {
65
  return inputs_.at(idx);
66
}
67

68
paddle::optional<const MetaTensor&> InferMetaContext::OptionalInputAt(
69 70
    size_t idx) const {
  const auto& input = inputs_.at(idx);
71 72 73
  return input.initialized()
             ? paddle::optional<const MetaTensor&>{input}
             : paddle::optional<const MetaTensor&>{paddle::none};
74 75
}

76 77 78
std::vector<const MetaTensor*> InferMetaContext::InputsBetween(
    size_t start, size_t end) const {
  std::vector<const MetaTensor*> result;
79 80 81
  result.reserve(end - start);

  for (size_t i = start; i < end; ++i) {
82 83
    auto& in = inputs_.at(i);
    result.emplace_back(in.initialized() ? &in : nullptr);
84 85 86 87 88
  }

  return result;
}

89 90 91 92
paddle::optional<const std::vector<const MetaTensor*>>
InferMetaContext::OptionalInputsBetween(size_t start, size_t end) const {
  const auto& first = inputs_.at(start);

93
  if (first.initialized()) {
94 95 96 97
    std::vector<const MetaTensor*> result;
    result.reserve(end - start);

    for (size_t i = start; i < end; ++i) {
98 99
      auto& in = inputs_.at(i);
      result.emplace_back(in.initialized() ? &in : nullptr);
100 101 102 103 104 105 106
    }

    return paddle::optional<const std::vector<const MetaTensor*>>(result);
  }
  return paddle::optional<const std::vector<const MetaTensor*>>(paddle::none);
}

107
MetaTensor* InferMetaContext::MutableOutputAt(size_t idx) {
108 109
  auto& out = outputs_.at(idx);
  return out.initialized() ? &out : nullptr;
110 111
}

112 113 114
std::vector<MetaTensor*> InferMetaContext::MutableOutputBetween(size_t start,
                                                                size_t end) {
  std::vector<MetaTensor*> result;
115 116
  result.reserve(end - start);
  for (size_t i = start; i < end; ++i) {
117 118
    auto& out = outputs_.at(i);
    result.emplace_back(out.initialized() ? &out : nullptr);
119 120 121 122
  }
  return result;
}

C
Chen Weihang 已提交
123 124
MetaFnFactory& MetaFnFactory::Instance() {
  static MetaFnFactory g_meta_fn_map;
125 126 127
  return g_meta_fn_map;
}

128
}  // namespace phi