Skip to content

Commit

Permalink
Fix for NoGPU.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Kamenev committed Oct 14, 2015
1 parent 3129a35 commit e0ee2b3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Math/Math/NoGPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -863,10 +863,13 @@ namespace Microsoft { namespace MSR { namespace CNTK {
template<class ElemType> void GPUMatrix<ElemType>::VectorMax(GPUMatrix<ElemType>& maxIndexes, GPUMatrix<ElemType>& maxValues, const bool isColWise) const
{}

template<class ElemType> void GPUMatrix<ElemType>::VectorMax(GPUMatrix<ElemType>& maxIndexes, GPUMatrix<ElemType>& maxValues, const bool isColWise, int topK, GPUMatrix<ElemType>& workspace) const
{}

template<class ElemType> void GPUMatrix<ElemType>::VectorMin(GPUMatrix<ElemType>& minIndexes, GPUMatrix<ElemType>& minValues, const bool isColWise) const
{}

template<class ElemType> GPUMatrix<ElemType>& GPUMatrix<ElemType>::AssignNumOfDiff(const GPUMatrix<ElemType>& /*a*/, const GPUMatrix<ElemType>& /*b*/) { return *this; }
template<class ElemType> GPUMatrix<ElemType>& GPUMatrix<ElemType>::AssignNumOfDiff(const GPUMatrix<ElemType>& /*a*/, const GPUMatrix<ElemType>& /*b*/, bool /*searchInCol = false*/) { return *this; }

#pragma endregion Member BLAS Functions

Expand Down

0 comments on commit e0ee2b3

Please sign in to comment.