https://github.com/Microsoft/CNTK
Raw File
Tip revision: ce503f8dd769c2adfd558a5b522c89ef4b5bca57 authored by Peyman Manikashani on 26 September 2018, 00:09:23 UTC
pooling export fix for backward compatibility
Tip revision: ce503f8
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