swh:1:snp:f50ab94432af916b5fb8b4ad831e8dddded77084
Raw File
Tip revision: 2eeb18bebcbdbf88ed1238bf6c3e482012352c49 authored by Vadim Mazalov on 27 June 2016, 14:41:47 UTC
Add logs to track forward prop time.
Tip revision: 2eeb18b
UCIFastReaderTests.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 "Common/ReaderTestHelper.h"

using namespace Microsoft::MSR::CNTK;

namespace Microsoft { namespace MSR { namespace CNTK { namespace Test {

struct UCIReaderFixture : ReaderFixture
{
    UCIReaderFixture()
        : ReaderFixture("/Data")
    {
    }
};

BOOST_FIXTURE_TEST_SUITE(ReaderTestSuite, UCIReaderFixture)

BOOST_AUTO_TEST_CASE(UCIFastReaderSimpleDataLoop)
{
    HelperRunReaderTest<float>(
        testDataPath() + "/Config/UCIFastReaderSimpleDataLoop_Config.cntk",
        testDataPath() + "/Control/UCIFastReaderSimpleDataLoop_Control.txt",
        testDataPath() + "/Control/UCIFastReaderSimpleDataLoop_Output.txt",
        "Simple_Test",
        "reader",
        500,
        250,
        2,
        1,
        1,
        0,
        1);
};

BOOST_AUTO_TEST_SUITE_END()

} } } }
back to top