https://github.com/Microsoft/CNTK
Raw File
Tip revision: 09e25a47fa2aab9af503563ba86ebce1739f3ac1 authored by Spandan Tiwari on 11 April 2018, 17:26:15 UTC
Moving group convolution implementation to use cuDNN7 and MKL2017 APIs.
Tip revision: 09e25a4
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