Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix typo on BatchNorm for mirroring (#6541)
Browse files Browse the repository at this point in the history
* fix bug on BatchNorm for mirroring

* keep CuDNNBN
  • Loading branch information
taineleau authored and piiswrong committed Jun 2, 2017
1 parent e41ab86 commit 551996a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/executor/graph_executor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ nnvm::Graph GraphExecutor::InitFullGraph(
if (type == "FullyConnected") return false;
if (type == "Concat") return false;
if (type == "SoftmaxOutput") return false;
if (type == "BatchNorm") return false;
if (type == "CuDNNBatchNorm") return false;
return true;
};
Expand Down

0 comments on commit 551996a

Please sign in to comment.