Skip to content

Commit

Permalink
Fix for name resolution.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Kamenev committed Feb 12, 2016
1 parent e8ab337 commit e12427d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Math/CuDnnConvolutionEngine.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ namespace Microsoft { namespace MSR { namespace CNTK {
assert(blockDim.z == 1);
assert(gridDim.y == 1);
assert(gridDim.z == 1);
assert(isfinite(epsilon) && epsilon > 0);
assert(::isfinite(epsilon) && epsilon > 0);

int irowSrcBase = (blockIdx.x * BlockDimX + threadIdx.x) * U;
if (irowSrcBase >= vectorSize)
Expand Down Expand Up @@ -315,7 +315,7 @@ namespace Microsoft { namespace MSR { namespace CNTK {
assert(gridDim.z == 1);
assert((spatialSize % U) == 0);
assert((vectorSize % spatialSize) == 0);
assert(isfinite(epsilon) && epsilon > 0);
assert(::isfinite(epsilon) && epsilon > 0);

int irowSrcBase = blockIdx.x * spatialSize + threadIdx.x * U;
if (irowSrcBase >= vectorSize)
Expand Down

0 comments on commit e12427d

Please sign in to comment.