70 lines
2.7 KiB
C++
70 lines
2.7 KiB
C++
/* Copyright 2015 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_TOOLS_BENCHMARK_BENCHMARK_MODEL_H_
|
|
#define TENSORFLOW_TOOLS_BENCHMARK_BENCHMARK_MODEL_H_
|
|
|
|
#include <cstdint>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "absl/status/status.h"
|
|
#include "tensorflow/core/framework/tensor_shape.h"
|
|
#include "tensorflow/core/framework/types.pb.h"
|
|
#include "tensorflow/core/platform/status.h"
|
|
#include "tensorflow/core/platform/types.h"
|
|
#include "tensorflow/core/public/session.h"
|
|
#include "tensorflow/core/util/stat_summarizer.h"
|
|
|
|
namespace tensorflow {
|
|
namespace benchmark_model {
|
|
|
|
// Used to help construct dummy inputs for the benchmarking.
|
|
struct InputLayerInfo {
|
|
std::string name;
|
|
DataType data_type;
|
|
TensorShape shape;
|
|
std::vector<float> initialization_values;
|
|
};
|
|
|
|
// Loads a model from disk into a new session.
|
|
absl::Status InitializeSession(int num_threads, const std::string& graph,
|
|
std::unique_ptr<Session>* session,
|
|
std::unique_ptr<GraphDef>* graph_def);
|
|
|
|
// Does a single run of the model that's been loaded into the given session.
|
|
absl::Status RunBenchmark(const std::vector<InputLayerInfo>& inputs,
|
|
const std::vector<std::string>& outputs,
|
|
const std::vector<std::string>& targets,
|
|
Session* session, StatSummarizer* stats,
|
|
int64_t* inference_time_us);
|
|
|
|
// Runs the model multiple time, keeping track of timing information.
|
|
absl::Status TimeMultipleRuns(double sleep_seconds, int num_runs,
|
|
double max_time_s,
|
|
const std::vector<InputLayerInfo>& inputs,
|
|
const std::vector<std::string>& outputs,
|
|
const std::vector<std::string>& targets,
|
|
Session* session, StatSummarizer* stats,
|
|
int64_t* total_time_us, int64_t* actual_num_runs);
|
|
|
|
// Handles all setup and argument parsing.
|
|
int Main(int argc, char** argv);
|
|
|
|
} // namespace benchmark_model
|
|
} // namespace tensorflow
|
|
|
|
#endif // TENSORFLOW_TOOLS_BENCHMARK_BENCHMARK_MODEL_H_
|