https://github.com/Microsoft/CNTK
Raw File
Tip revision: 615a046fa54348b3d89faae21c254155dd4da058 authored by Bowen Bao on 28 June 2018, 01:40:27 UTC
Example: seq MNIST, and profiling
Tip revision: 615a046
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