chromium/third_party/tflite/src/tensorflow/lite/profiling/profile_summary_formatter.cc

/* Copyright 2020 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.
==============================================================================*/

#include "tensorflow/lite/profiling/profile_summary_formatter.h"

#include <fstream>
#include <iomanip>
#include <ios>
#include <map>
#include <memory>
#include <ostream>
#include <queue>
#include <sstream>
#include <string>
#include <utility>
#include <vector>

#include "tensorflow/core/util/stat_summarizer_options.h"
#include "tensorflow/core/util/stats_calculator.h"
#include "tensorflow/lite/profiling/proto/profiling_info.pb.h"
#include "tensorflow/lite/tools/logging.h"

namespace tflite {
namespace profiling {

std::string ProfileSummaryDefaultFormatter::GetOutputString(
    const std::map<uint32_t, std::unique_ptr<tensorflow::StatsCalculator>>&
        stats_calculator_map,
    const tensorflow::StatsCalculator& delegate_stats_calculator,
    const std::map<uint32_t, std::string>& subgraph_name_map) const {}

std::string ProfileSummaryDefaultFormatter::GetShortSummary(
    const std::map<uint32_t, std::unique_ptr<tensorflow::StatsCalculator>>&
        stats_calculator_map,
    const tensorflow::StatsCalculator& delegate_stats_calculator,
    const std::map<uint32_t, std::string>& subgraph_name_map) const {}

std::string ProfileSummaryDefaultFormatter::GenerateReport(
    const std::string& tag, bool include_output_string,
    const std::map<uint32_t, std::unique_ptr<tensorflow::StatsCalculator>>&
        stats_calculator_map,
    const tensorflow::StatsCalculator& delegate_stats_calculator,
    const std::map<uint32_t, std::string>& subgraph_name_map) const {}

void ProfileSummaryDefaultFormatter::HandleOutput(
    const std::string& init_output, const std::string& run_output,
    std::string output_file_path) const {}

tensorflow::StatSummarizerOptions
ProfileSummaryDefaultFormatter::GetStatSummarizerOptions() const {}

tensorflow::StatSummarizerOptions
ProfileSummaryCSVFormatter::GetStatSummarizerOptions() const {}

std::vector<tensorflow::StatsCalculator::Detail>
ProfileSummaryProtoFormatter::GetDetailsSortedByRunOrder(
    const tensorflow::StatsCalculator* stats_calculator) const {}

void ProfileSummaryProtoFormatter::GenerateOpProfileDataFromDetail(
    const tensorflow::StatsCalculator::Detail* detail,
    const tensorflow::StatsCalculator* stats_calculator,
    OpProfileData* const op_profile_data) const {}

void ProfileSummaryProtoFormatter::GenerateSubGraphProfilingData(
    const tensorflow::StatsCalculator* stats_calculator, int subgraph_index,
    const std::map<uint32_t, std::string>& subgraph_name_map,
    SubGraphProfilingData* const sub_graph_profiling_data) const {}

void ProfileSummaryProtoFormatter::GenerateDelegateProfilingData(
    const tensorflow::StatsCalculator* stats_calculator,
    DelegateProfilingData* const delegate_profiling_data) const {}

std::string ProfileSummaryProtoFormatter::GetShortSummary(
    const std::map<uint32_t, std::unique_ptr<tensorflow::StatsCalculator>>&
        stats_calculator_map,
    const tensorflow::StatsCalculator& delegate_stats_calculator,
    const std::map<uint32_t, std::string>& subgraph_name_map) const {}

std::string ProfileSummaryProtoFormatter::GetOutputString(
    const std::map<uint32_t, std::unique_ptr<tensorflow::StatsCalculator>>&
        stats_calculator_map,
    const tensorflow::StatsCalculator& delegate_stats_calculator,
    const std::map<uint32_t, std::string>& subgraph_name_map) const {}

tensorflow::StatSummarizerOptions
ProfileSummaryProtoFormatter::GetStatSummarizerOptions() const {}

void ProfileSummaryProtoFormatter::HandleOutput(
    const std::string& init_output, const std::string& run_output,
    std::string output_file_path) const {}

}  // namespace profiling
}  // namespace tflite