Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Microsoft/CNTK
Browse files Browse the repository at this point in the history
  • Loading branch information
gaizkan committed Jan 25, 2016
2 parents e8bda68 + 2462647 commit 38778e1
Show file tree
Hide file tree
Showing 23 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Source/CNTK/NDLUtil.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,4 @@ class NDLUtil

template class NDLUtil<float>;
template class NDLUtil<double>;
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Common/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,4 +304,4 @@ void TrimQuotes(std::string& str)
if (str.front() == '"' && str.back() == '"')
str = str.substr(1, str.size() - 2);
}
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Common/DebugUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ void DebugUtil::PrintCallStack()
free(symbolList);
#endif
}
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Common/Include/latticesource.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ class latticesource
denlattices.setverbosity(veb);
}
};
} }
} }
2 changes: 1 addition & 1 deletion Source/EvalDll/CNTKEval.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ class CNTKEval : public IEvaluateModel<ElemType>
virtual void Destroy();
virtual void ResetState();
};
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Math/MatrixQuantizerCPU.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ class MatrixQuantizerCPU final : public MatrixQuantizerImpl<ElemType>
void UnquantizeAsync(QuantizedMatrix<ElemType>& inQMatrix, Matrix<ElemType>& outMatrix, bool add = false) override;
void WaitUnquantizeAsyncDone() override;
};
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Math/QuantizedMatrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,4 @@ class MATH_API QuantizedMatrix
template <typename T>
friend class MatrixQuantizer;
};
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/BinaryReader/BinaryFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1403,4 +1403,4 @@ bool SectionStats::AccumulateData(ElemType* dataSource, size_t numRecords, size_
// done with data
return false;
}
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/BinaryReader/BinaryReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -686,4 +686,4 @@ size_t RoundUp(size_t value, size_t size);
// HIGH and LOW DWORD functions
DWORD HIDWORD(size_t size);
DWORD LODWORD(size_t size);
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/BinaryReader/BinaryWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -439,4 +439,4 @@ void BinaryWriter<ElemType>::SaveMapping(std::wstring saveId, const std::map<typ
// instantiate all the combinations we expect to be used
template class BinaryWriter<double>;
template class BinaryWriter<float>;
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/BinaryReader/Exports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ extern "C" DATAWRITER_API void GetWriterD(IDataWriter<double>** pwriter)
{
GetWriter(pwriter);
}
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/HTKMLFReader/DataReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ void Trim(std::string& str)
str.erase(found + 1);
}
#endif
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/ImageReader/Exports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ extern "C" DATAREADER_API void GetReaderD(IDataReader<double>** preader)
{
GetReader(preader);
}
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/Kaldi2Reader/htkfeatio_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ inline std::string trimmed(std::string str)
str.erase(found + 1);

return str;
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/LMSequenceReader/Exports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ extern "C" DATAREADER_API void GetReaderD(IDataReader<double>** preader)
{
GetReader(preader);
}
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/LUSequenceReader/Exports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ extern "C" DATAREADER_API void GetReaderD(IDataReader<double>** preader)
{
GetReader(preader);
}
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/LUSequenceReader/LUSequenceWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,4 @@ void LUSequenceWriter<ElemType>::Save(std::wstring& outputFile, const Matrix<Ele

template class LUSequenceWriter<float>;
template class LUSequenceWriter<double>;
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/LUSequenceReader/LUSequenceWriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ class LUSequenceWriter : public IDataWriter<ElemType>
virtual void Destroy();
virtual bool SaveData(size_t recordStart, const std::map<std::wstring, void*, nocase_compare>& matrices, size_t numRecords, size_t datasetSize, size_t byteVariableSized);
};
} } }
} } }
2 changes: 1 addition & 1 deletion Source/Readers/UCIFastReader/Exports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ extern "C" DATAREADER_API void GetReaderD(IDataReader<double>** preader)
{
GetReader(preader);
}
} } }
} } }
2 changes: 1 addition & 1 deletion Tests/UnitTests/FileTest/FileTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,4 +236,4 @@ File& operator>>(File& stream, FileTest& test)
stream.GetMarker(fileMarkerEndSection, string("endFileTest"));
return stream;
}
} } }
} } }
2 changes: 1 addition & 1 deletion Tests/UnitTests/FileTest/FileTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ class FileTest
// operator overloading
File& operator>>(File& stream, FileTest& test);
File& operator<<(File& stream, FileTest& test);
} } }
} } }
2 changes: 1 addition & 1 deletion Tests/UnitTests/MathTests/DebugUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ void DebugUtil::PrintCallStack()
free(symbolInfo);
#endif // _WIN32
}
} } }
} } }
2 changes: 1 addition & 1 deletion Tests/UnitTests/ReaderTests/Common/ReaderTestHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -266,4 +266,4 @@ struct ReaderFixture
}
};
}
} } }
} } }

0 comments on commit 38778e1

Please sign in to comment.