https://github.com/Microsoft/CNTK
Raw File
Tip revision: 2941e599dc437c0e9c1340d6249ebcccbb342128 authored by REDMOND\sayanpa on 11 February 2017, 07:07:05 UTC
Chekcing in working cif forecasting tutorial
Tip revision: 2941e59
TensorBoardUtils.h
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//

#pragma once

#include "stdafx.h"
#include "CNTKLibrary.h"

namespace tensorflow
{
    class GraphDef;
}

namespace CNTK
{
    namespace Internal
    {
        namespace TensorBoardUtils
        {
            ///
            /// Populates the given TensorFlow GraphDef with the graph of the given CNTK function.
            ///
            void CreateGraph(const FunctionPtr& src, tensorflow::GraphDef& dst);
        }
    }
}
back to top