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

/* Copyright 2022 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/root_profiler.h"

#include <memory>
#include <utility>
#include <vector>

#include "tensorflow/lite/core/api/profiler.h"

namespace tflite {
namespace profiling {

void RootProfiler::AddProfiler(Profiler* profiler) {}

void RootProfiler::AddProfiler(std::unique_ptr<Profiler>&& profiler) {}

uint32_t RootProfiler::BeginEvent(const char* tag, EventType event_type,
                                  int64_t event_metadata1,
                                  int64_t event_metadata2) {}

void RootProfiler::EndEvent(uint32_t event_handle, int64_t event_metadata1,
                            int64_t event_metadata2) {}

void RootProfiler::EndEvent(uint32_t event_handle) {}

void RootProfiler::AddEvent(const char* tag, EventType event_type,
                            uint64_t metric, int64_t event_metadata1,
                            int64_t event_metadata2) {}

void RootProfiler::AddEventWithData(const char* tag, EventType event_type,
                                    const void* data) {}

void RootProfiler::RemoveChildProfilers() {}

}  // namespace profiling
}  // namespace tflite