op_call_stack.cc 2.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/* Copyright (c) 2019 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. */

#include "paddle/fluid/framework/op_call_stack.h"
#include <string>
#include <vector>
#include "paddle/fluid/framework/attribute.h"
#include "paddle/fluid/framework/op_proto_maker.h"

namespace paddle {
namespace framework {

void InsertCallStackInfo(const std::string &type, const AttributeMap &attrs,
                         platform::EnforceNotMet *exception) {
  if (attrs.count("sub_block") != 0) {
    return;
  }
29 30 31 32 33 34 35

  const std::vector<std::string> *callstack = nullptr;
  auto iter = attrs.find(OpProtoAndCheckerMaker::OpCreationCallstackAttrName());
  if (iter != attrs.end()) {
    callstack = &boost::get<std::vector<std::string>>(iter->second);
    if (callstack->empty()) callstack = nullptr;
  }
36 37

  std::ostringstream sout;
38 39
  std::ostringstream sout_py_trace;
  // Step 1. Construct python call stack string
40
  if (callstack) {
41 42 43
    sout_py_trace << "\n------------------------------------------\n";
    sout_py_trace << "Python Call Stacks (More useful to users):";
    sout_py_trace << "\n------------------------------------------\n";
44
    for (auto &line : *callstack) {
45 46
      sout_py_trace << line;
    }
47
  }
48
  // Step 2. Insert python traceback into err_str_
49 50 51
  std::size_t found = exception->err_str_.rfind(
      "\n----------------------\nError Message "
      "Summary:\n----------------------\n");
52 53 54 55 56
  if (found != std::string::npos) {
    exception->err_str_.insert(found, sout_py_trace.str());
  } else {
    exception->err_str_.append(sout_py_trace.str());
  }
57
  // Step 3. Construct final call stack & append error op name
58
  sout << exception->err_str_;
59
  if (callstack) {
60 61
    sout << "  [operator < " << type << " > error]";
  }
62 63 64 65 66
  exception->err_str_ = sout.str();
}

}  // namespace framework
}  // namespace paddle