https://github.com/Microsoft/CNTK
Raw File
Tip revision: fc839bc3715b7947c887f40304f645890d7431f8 authored by Peyman Manikashani on 23 January 2019, 00:18:07 UTC
Moving CI test dependencies to python environments yml files
Tip revision: fc839bc
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