infermeta_utils.cc 3.6 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 23

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

void InferMetaContext::EmplaceBackInput(
24
    std::shared_ptr<phi::MetaTensor> input) {
25 26 27 28 29
  int index = inputs_.size();
  inputs_.emplace_back(std::move(input));
  input_range_.emplace_back(std::pair<int, int>(index, index + 1));
}
void InferMetaContext::EmplaceBackOutput(
30
    std::shared_ptr<phi::MetaTensor> output) {
31 32 33 34 35 36 37 38 39
  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(
40
    paddle::SmallVector<std::shared_ptr<phi::MetaTensor>> inputs) {
41 42 43 44 45 46 47
  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(
48
    paddle::SmallVector<std::shared_ptr<phi::MetaTensor>> outputs) {
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
  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 {
  return *inputs_.at(idx);
}
69

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

78 79 80 81 82 83 84 85 86 87 88 89
std::vector<MetaTensor> InferMetaContext::InputsBetween(size_t start,
                                                        size_t end) const {
  std::vector<MetaTensor> result;
  result.reserve(end - start);

  for (size_t i = start; i < end; ++i) {
    result.emplace_back(*inputs_.at(i));
  }

  return result;
}

90 91 92 93
MetaTensor* InferMetaContext::MutableOutputAt(size_t idx) {
  return outputs_.at(idx).get();
}

94 95 96 97 98 99 100 101 102 103
std::vector<MetaTensor> InferMetaContext::MutableOutputBetween(size_t start,
                                                               size_t end) {
  std::vector<MetaTensor> result;
  result.reserve(end - start);
  for (size_t i = start; i < end; ++i) {
    result.emplace_back(*outputs_.at(i));
  }
  return result;
}

C
Chen Weihang 已提交
104 105
MetaFnFactory& MetaFnFactory::Instance() {
  static MetaFnFactory g_meta_fn_map;
106 107 108
  return g_meta_fn_map;
}

109
}  // namespace phi