function_utils.cc 3.9 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 16 17 18 19
#include "paddle/fluid/jit/function_utils.h"

#include "paddle/fluid/framework/program_desc.h"
#include "paddle/fluid/framework/var_desc.h"
#include "paddle/phi/core/enforce.h"
20 21 22

namespace paddle {
namespace jit {
23
namespace utils {
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

std::vector<DenseTensor> ToDenseTensors(const std::vector<Tensor> &tensors) {
  std::vector<DenseTensor> ret;
  for (auto &t : tensors) {
    ret.emplace_back(*std::dynamic_pointer_cast<phi::DenseTensor>(t.impl()));
  }
  return ret;
}

std::vector<Tensor> ToTensors(const std::vector<DenseTensor> &tensors) {
  std::vector<Tensor> ret;
  for (auto &t : tensors) {
    ret.emplace_back(std::make_shared<DenseTensor>(t));
  }
  return ret;
}

void FetchOuts(const std::vector<std::string> &names,
               const framework::Scope &scope,
               std::vector<DenseTensor> *outs) {
  outs->reserve(names.size());
  for (size_t i = 0; i < names.size(); ++i) {
    auto &out_name = names[i];
47 48 49
    VLOG(3) << "fetch out: " << out_name;
    auto *var = scope.FindVar(out_name);
    auto &src_tensor = var->Get<DenseTensor>();
50
    outs->emplace_back(src_tensor);
51 52 53
  }
}

54 55 56 57
void ShareIntoScope(const std::vector<std::string> &ordered_input_names,
                    const std::vector<DenseTensor> &tensors,
                    framework::Scope *scope) {
  VLOG(3) << "tensors size: " << tensors.size();
58
  PADDLE_ENFORCE_EQ(
59
      tensors.size(),
60 61
      ordered_input_names.size(),
      platform::errors::InvalidArgument(
62 63
          "tensors.size() should be equal to ordered_input_names.size()."));
  for (size_t i = 0; i < tensors.size(); ++i) {
64 65 66
    VLOG(3) << "share into scope: " << ordered_input_names[i];
    auto *var = scope->Var(ordered_input_names[i]);
    auto *dst_tensor = var->GetMutable<DenseTensor>();
67
    *dst_tensor = tensors[i];
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
  }
}

void ShareParamsIntoScope(const std::vector<std::string> &param_names,
                          const Name2VariableMap &params_dict,
                          framework::Scope *scope) {
  VLOG(3) << "param_names size: " << param_names.size();
  for (size_t i = 0; i < param_names.size(); ++i) {
    std::string name = param_names[i];
    auto &param = params_dict.find(name)->second;
    auto &dense_tensor = param.Get<DenseTensor>();
    VLOG(3) << "share into scope: " << name;
    auto *var = scope->Var(name);
    auto *dst_tensor = var->GetMutable<DenseTensor>();
    *dst_tensor = dense_tensor;
  }
}

void RemoveFeedFetch(framework::ProgramDesc *program_desc) {
  for (size_t i = 0; i < program_desc->Size(); ++i) {
    auto *block = program_desc->MutableBlock(i);
    const auto &all_ops = block->AllOps();
    size_t op_size = all_ops.size();
    VLOG(3) << "op_size: " << op_size;
    for (int i = op_size - 1; i >= 0; i--) {
      auto op = all_ops[i];
      if (op->Type() == "feed") {
        VLOG(3) << "remove op type: " << op->Type() << ", index: " << i
                << ", var name: " << op->Input("X")[0];
        block->RemoveVar(op->Input("X")[0]);
        block->RemoveOp(i, i + 1);
      } else if (op->Type() == "fetch") {
        VLOG(3) << "remove op type: " << op->Type() << ", index: " << i
                << ", var name: " << op->Output("Out")[0];
        block->RemoveVar(op->Output("Out")[0]);
        block->RemoveOp(i, i + 1);
      }
    }
  }
}

109
}  // namespace utils
110 111
}  // namespace jit
}  // namespace paddle