https://github.com/Microsoft/CNTK
Raw File
Tip revision: 63e01bae7663d2ce9fa6b0faedfb92d7d49424d4 authored by Aghagolzadeh on 09 February 2019, 07:11:52 UTC
Additionally commented out renaming the .ckp.tmp to .ckp
Tip revision: 63e01ba
DataTransferer.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 "DataTransferer.h"
#include "GPUDataTransferer.h"

namespace Microsoft { namespace MSR { namespace CNTK {

    DataTransfererPtr CreatePrefetchDataTransferer(int deviceId)
    {
        return std::make_shared<PrefetchGPUDataTransferer>(deviceId);
    }

} } }
back to top