Skip to content

Commit

Permalink
Fix based on CR.
Browse files Browse the repository at this point in the history
  • Loading branch information
cha-zhang authored and mahilleb-msft committed Apr 21, 2017
1 parent 260ca86 commit f190457
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Source/ComputationNetworkLib/ConvolutionalNodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ protected: \
using Base::m_tempMatrixForward; \
using Base::m_tempMatrixBackward; \
using Base::m_convEng; \
using Base::InferConvolution2DReductionDims; \
using Base::InferReductionDims; \
public:

Expand Down
2 changes: 1 addition & 1 deletion Source/Math/CuDnnConvolutionEngine.cu
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ bool CuDnnConvolutionEngineFactory<ElemType>::IsSupported(DEVICEID_TYPE deviceId
(poolKind == PoolKind::None ||
inputRank <= 3 && (kernelRank < 3 || kernel[2] == 1)));

// cuDNN as of version 6.0 does not handle asymmetric padding for convolution correctly. We need to detect asymmetric
// cuDNN as of version 6.0 does not handle asymmetric padding for even size kernel convolution correctly. We need to detect asymmetric
// padding due to auto-padding and choose the reference convolution implementation instead
if (poolKind == PoolKind::None) // only for convolution, pooling seems fine
{
Expand Down

0 comments on commit f190457

Please sign in to comment.