https://github.com/Microsoft/CNTK
Raw File
Tip revision: ea5a77ebd44c2efef7abe96aabd46024fb52e140 authored by Eldar Akchurin on 08 June 2017, 13:39:36 UTC
Exposing user deserializer in Python
Tip revision: ea5a77e
CNTKLibraryCPPEvalCPUOnlyExamples.cpp
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//
// CNTKLibraryCPPEvalCPUOnlyExamples.cpp : Sample application shows how to evaluate a model using CNTK V2 API.
//

#include <stdio.h>

void MultiThreadsEvaluation(bool);

int main()
{

    fprintf(stderr, "\n##### Run CNTKLibraryCPPEvalCPUOnlyExamples on CPU. #####\n");
    MultiThreadsEvaluation(false);

    fprintf(stderr, "Evaluation complete.\n");
    fflush(stderr);
}
back to top