https://github.com/Microsoft/CNTK
Raw File
Tip revision: 650bad1407337aef92dddf350499197cabfbb8ee authored by Frank Seide on 04 April 2017, 20:48:19 UTC
bug fix: AsTensorViewShape() should not pad shapes to >= 2 axes, instead AsMatrix() should be updated to handle rank-1 tensors;
Tip revision: 650bad1
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