GPUDummy.cpp now compiles with GCC

This commit is contained in:
Frank Seide 2014-10-30 22:13:43 -07:00
Родитель 2738da7496
Коммит ca0f8d2a40
2 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -119,7 +119,7 @@ namespace Microsoft { namespace MSR { namespace CNTK {
}
template<class ElemType>
void GPUSparseMatrix<ElemType>::Resize(const size_t numRows, const size_t numCols, int size)
void GPUSparseMatrix<ElemType>::Resize(const size_t numRows, const size_t numCols, size_t size)
{}
//Reset matrix so it can be reused
@ -1085,6 +1085,7 @@ namespace Microsoft { namespace MSR { namespace CNTK {
return *this;
}
#if 0
template<class ElemType>
GPUMatrix<ElemType>& GPUMatrix<ElemType>::InplaceSoftmax (const bool isColWise)
{
@ -1096,6 +1097,7 @@ namespace Microsoft { namespace MSR { namespace CNTK {
{
return *this;
}
#endif
template<class ElemType>
GPUMatrix<ElemType>& GPUMatrix<ElemType>::InplaceSqrt()
@ -1426,8 +1428,7 @@ namespace Microsoft { namespace MSR { namespace CNTK {
const size_t kernelWidth, const size_t kernelHeight, const size_t horizontalSubsample, const size_t verticalSubsample,
const bool zeroPadding) const
{
GPUMatrix<ElemType> mat;
return mat;
return inputSubBatch;
}
template<class ElemType>
@ -1651,7 +1652,7 @@ int GPUWatcher::GetGPUIdWithTheMostFreeMemory()
}
size_t GPUWatcher::GetFreeMemoryOnCUDADevice(int devId)
size_t GPUWatcher::GetFreeMemoryOnCUDADevice(int /*devId*/)
{
return 0;
}

Просмотреть файл

@ -7,6 +7,7 @@
#include <string>
#include <vector>
#include <ctime>
#include <limits.h> // for ULONG_MAX
#include "File.h"
#include "Helpers.h"
#include "CommonMatrix.h"