Skip to content

Commit

Permalink
(fixed a log message)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankseide committed Oct 9, 2015
1 parent f4b6149 commit cf03ef9
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -788,9 +788,7 @@ class ComputationNetwork : public ScriptableObjects::Object, public ScriptableOb
for (auto nodeIter = allNodes.begin(); nodeIter != allNodes.end(); nodeIter++)
{
#ifdef DISPLAY_DEBUG
fprintf(stderr, "Compute Gradient For Node: %s(%s) Against Children\n",
(msra::strfun::utf8 ((*nodeIter)->OperationName())).c_str(),
(msra::strfun::utf8 ((*nodeIter)->NodeName())).c_str());
fprintf(stderr, "Compute Gradient For Node: %ls(%ls) Against Children\n", (*nodeIter)->OperationName().c_str(), (*nodeIter)->NodeName().c_str());
#endif
// --- first, perform recurrent loops if this node participates in one

Expand Down

0 comments on commit cf03ef9

Please sign in to comment.