https://github.com/Microsoft/CNTK
Raw File
Tip revision: deddd25d95e6bae8c306cd48da3b187826f6ff8e authored by Frank Seide on 30 May 2017, 21:56:43 UTC
fixed the Communicator use, which is not germaine to this tutorial (although teh bug is really in Communicator itself, which should be a dummy in non-1Bit-SGD builds)
Tip revision: deddd25
CPUMatrixDouble.cpp
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//
#include "stdafx.h"
#include "CPUMatrixImpl.h"

namespace Microsoft { namespace MSR { namespace CNTK {

    // explicit instantiations, due to CPUMatrix being too big and causing VS2015 cl crash.
    template class MATH_API CPUMatrix<double>;
}}}
back to top