Skip to content

Commit

Permalink
(fixed NoGPU.cpp for last commit)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankseide committed Mar 13, 2016
1 parent 0c62fb9 commit 7b539bd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Source/Math/NoGPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,18 @@ GPUMatrix<ElemType>& GPUMatrix<ElemType>::AssignTransposeOf(const GPUMatrix<Elem
return *this;
}

template <class ElemType>
GPUMatrix<ElemType>& GPUMatrix<ElemType>::DoGatherColumnsOf(ElemType beta, const GPUMatrix<ElemType>& m, const GPUMatrix<ElemType>& a, ElemType alpha)
{
return *this;
}

template <class ElemType>
GPUMatrix<ElemType>& GPUMatrix<ElemType>::DoScatterColumnsOf(ElemType beta, const GPUMatrix<ElemType>& m, const GPUMatrix<ElemType>& a, ElemType alpha)
{
return *this;
}

template <class ElemType>
void GPUMatrix<ElemType>::SetValue(const ElemType v)
{
Expand Down

0 comments on commit 7b539bd

Please sign in to comment.