https://github.com/Microsoft/CNTK
Raw File
Tip revision: 3de2b8538653d9160a643e1ef7fa99017f53ac5e authored by KeDengMS on 20 April 2018, 05:37:48 UTC
Undo some formatting changes to better align with master
Tip revision: 3de2b85
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