Skip to content

Commit f190457

Browse files
cha-zhangmahilleb-msft
authored andcommitted
Fix based on CR.
1 parent 260ca86 commit f190457

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Source/ComputationNetworkLib/ConvolutionalNodes.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ protected: \
286286
using Base::m_tempMatrixForward; \
287287
using Base::m_tempMatrixBackward; \
288288
using Base::m_convEng; \
289+
using Base::InferConvolution2DReductionDims; \
289290
using Base::InferReductionDims; \
290291
public:
291292

Source/Math/CuDnnConvolutionEngine.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ bool CuDnnConvolutionEngineFactory<ElemType>::IsSupported(DEVICEID_TYPE deviceId
664664
(poolKind == PoolKind::None ||
665665
inputRank <= 3 && (kernelRank < 3 || kernel[2] == 1)));
666666

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

0 commit comments

Comments
 (0)