Add call stack info during compile time (#19067)
* Add call stack info during runtime and compile time test=develop * Rename operator_call_stack test=develop * Add unit test test=develop * follow comment test=developpadding_in_crf
parent
a99bc64c63
commit
21440b4d69
@ -0,0 +1,47 @@
|
|||||||
|
/* 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;
|
||||||
|
}
|
||||||
|
auto &callstack = boost::get<std::vector<std::string>>(
|
||||||
|
attrs.at(OpProtoAndCheckerMaker::OpCreationCallstackAttrName()));
|
||||||
|
|
||||||
|
if (callstack.empty()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
std::ostringstream sout;
|
||||||
|
sout << "Invoke operator " << type << " error.\n";
|
||||||
|
sout << "Python Call stacks: \n";
|
||||||
|
for (auto &line : callstack) {
|
||||||
|
sout << line;
|
||||||
|
}
|
||||||
|
sout << "C++ Call stacks: \n";
|
||||||
|
sout << exception->err_str_;
|
||||||
|
exception->err_str_ = sout.str();
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace framework
|
||||||
|
} // namespace paddle
|
@ -0,0 +1,26 @@
|
|||||||
|
/* 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. */
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include "paddle/fluid/framework/type_defs.h"
|
||||||
|
#include "paddle/fluid/platform/enforce.h"
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
namespace framework {
|
||||||
|
void InsertCallStackInfo(const std::string &type, const AttributeMap &attrs,
|
||||||
|
platform::EnforceNotMet *exception);
|
||||||
|
} // namespace framework
|
||||||
|
} // namespace paddle
|
@ -0,0 +1,56 @@
|
|||||||
|
# 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.
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
import numpy as np
|
||||||
|
from op_test import OpTest
|
||||||
|
import paddle.fluid as fluid
|
||||||
|
import paddle.fluid.core as core
|
||||||
|
|
||||||
|
|
||||||
|
class TestRunTimeException(OpTest):
|
||||||
|
def test_run_time_exception(self):
|
||||||
|
place = fluid.CPUPlace()
|
||||||
|
exe = fluid.Executor(place)
|
||||||
|
|
||||||
|
train_program = fluid.Program()
|
||||||
|
startup_program = fluid.Program()
|
||||||
|
with fluid.program_guard(train_program, startup_program):
|
||||||
|
label = fluid.layers.data(name="label", shape=[1], dtype="int64")
|
||||||
|
fluid.layers.one_hot(input=label, depth=100)
|
||||||
|
|
||||||
|
def _run_program():
|
||||||
|
x = np.random.random(size=(10)).astype('int64')
|
||||||
|
exe.run(train_program, feed={"label": x})
|
||||||
|
|
||||||
|
self.assertRaises(core.EnforceNotMet, _run_program)
|
||||||
|
|
||||||
|
|
||||||
|
class TestCompileTimeException(OpTest):
|
||||||
|
def test_compile_time_exception(self):
|
||||||
|
self.assertRaises(core.EnforceNotMet, self.build_model)
|
||||||
|
|
||||||
|
def build_model(self):
|
||||||
|
train_program = fluid.Program()
|
||||||
|
startup_program = fluid.Program()
|
||||||
|
with fluid.program_guard(train_program, startup_program):
|
||||||
|
label = fluid.layers.data(
|
||||||
|
name="label", shape=[1], dtype="int64", append_batch_size=False)
|
||||||
|
fluid.layers.one_hot(input=label, depth=100)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
Loading…
Reference in new issue