Skip to content

Commit

Permalink
Optimize fuse_seqpool_cvm supports nncross and add nncross sync stats…
Browse files Browse the repository at this point in the history
… configuration (#52)
  • Loading branch information
mingqinghu committed Nov 4, 2020
1 parent 3561c96 commit 3a89832
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion paddle/fluid/framework/operator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ void OperatorBase::Run(const Scope& scope, const platform::Place& place) {
std::rethrow_exception(std::current_exception());
} catch (std::exception& ex) {
LOG(WARNING) << Type() << " raises an exception "
<< platform::demangle(typeid(ex).name()) << ", " << ex.what();
<< platform::demangle(typeid(ex).name()) << ", " << ex.what()
<< ", debug string: [" << DebugStringEx(&scope) << "]";
std::rethrow_exception(std::current_exception());
} catch (...) {
LOG(WARNING) << Type() << " raises an unknown exception";
Expand Down

0 comments on commit 3a89832

Please sign in to comment.