Skip to content

Commit

Permalink
Fixed build warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Kamenev committed Feb 12, 2016
1 parent 19b0c82 commit 6ff885a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Math/CuDnnConvolutionEngine.cu
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ public:
// No support for exp averaging for now.
assert(expAvgFactor == 1);
if (expAvgFactor != 1)
InvalidArgument("CNTK batch norm implementation currently supports expAvgFactor = 1 only.", m_bnImpl);
InvalidArgument("CNTK batch norm implementation currently supports expAvgFactor = 1 only.");
epsilon = std::max(epsilon, 1e-9);
CUDA_CALL(BatchNormalizationForwardTraining(inT, spatial, ptr(in), ptr(out), ptr(scale), ptr(bias),
ptr(runMean), ptr(runInvStdDev), epsilon,
Expand Down

0 comments on commit 6ff885a

Please sign in to comment.