/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_CORE_KERNELS_HEXAGON_GRAPH_TRANSFER_UTILS_H_ #define TENSORFLOW_CORE_KERNELS_HEXAGON_GRAPH_TRANSFER_UTILS_H_ #include #include #include #include "tensorflow/core/framework/types.h" #include "tensorflow/core/kernels/hexagon/graph_transferer.h" #include "tensorflow/core/platform/macros.h" namespace tensorflow { class RemoteFusedGraphExecuteInfo; class GraphTransferUtils { public: static std::priority_queue> GetTopNFloatResults(const float* const data, const string* const labels, const int element_count); static void DumpTopNFloatResults(const float* const data, const string* const labels, const int element_count, const int top_n); static GraphDef BuildFusedGraphDef( const IRemoteFusedGraphOpsDefinitions& ops_definitions, const string& remote_graph_execute_name, const std::vector>& inputs, const std::vector& outputs, GraphDef* original_def); private: static RemoteFusedGraphExecuteInfo BuildRemoteFusedGraphExecuteInfo( const GraphDef& graph_def, const std::vector>& inputs, const std::vector& outputs, const RemoteFusedGraphExecuteUtils::TensorShapeMap& tensor_shape_map); TF_DISALLOW_COPY_AND_ASSIGN(GraphTransferUtils); }; } // namespace tensorflow #endif // TENSORFLOW_CORE_KERNELS_HEXAGON_GRAPH_TRANSFER_UTILS_H_