op_call_stack.cc 2.8 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
/* 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 {

24 25 26 27
std::string InsertIndentationIntoEachLine(const std::string &str) {
  std::ostringstream sout;
  size_t start_pos = 0;
  size_t end_pos = 0;
28 29
  while ((end_pos = str.find_first_of("\n", start_pos)) != std::string::npos) {
    sout << "    " << str.substr(start_pos, end_pos - start_pos + 1);
30 31
    start_pos = end_pos + 1;
  }
32
  sout << "    " << str.substr(start_pos, end_pos - start_pos + 1);
33 34 35
  return sout.str();
}

36 37 38 39 40
void InsertCallStackInfo(const std::string &type, const AttributeMap &attrs,
                         platform::EnforceNotMet *exception) {
  if (attrs.count("sub_block") != 0) {
    return;
  }
41 42 43 44

  const std::vector<std::string> *callstack = nullptr;
  auto iter = attrs.find(OpProtoAndCheckerMaker::OpCreationCallstackAttrName());
  if (iter != attrs.end()) {
45
    callstack = &BOOST_GET_CONST(std::vector<std::string>, iter->second);
46 47
    if (callstack->empty()) callstack = nullptr;
  }
48 49

  std::ostringstream sout;
50
  // Step 1. Construct python call stack string
51
  if (callstack) {
52 53 54 55 56
    if (FLAGS_call_stack_level > 1) {
      sout << "\n\n  Compile Traceback (most recent call last):";
    } else {
      sout << "In user code:\n";
    }
57
    for (auto &line : *callstack) {
58
      sout << "\n  " << line;
59
    }
60
  }
61
  VLOG(1) << exception->error_str();
62
  // Step 2. Construct final call stack & append error op name
63 64 65 66 67 68 69 70 71 72 73
  if (FLAGS_call_stack_level > 1) {
    sout << exception->what();
  } else {
    // If callstack exists, use err_str_ instead sub_err_str_
    if (callstack) {
      sout << "\n\n";
      sout << InsertIndentationIntoEachLine(exception->error_str());
    } else {
      sout << exception->simple_error_str();
    }
  }
74
  sout << "  [operator < " << type << " > error]";
75
  exception->set_error_str(sout.str());
76 77 78 79 80
}

void AppendErrorOpHint(const std::string &type,
                       platform::EnforceNotMet *exception) {
  std::ostringstream sout;
81
  sout << exception->what();
82
  sout << "  [operator < " << type << " > error]";
83
  exception->set_error_str(sout.str());
84 85 86 87
}

}  // namespace framework
}  // namespace paddle