StatSummarizer: Remove unused, unnecessary constructor.

Change: 146325322
This commit is contained in:
Asim Shankar 2017-02-01 21:00:43 -08:00 committed by TensorFlower Gardener
parent 2275fe9693
commit 9211ee0388
2 changed files with 0 additions and 9 deletions

View File

@ -34,10 +34,6 @@ StatSummarizer::StatSummarizer(const StatSummarizerOptions& options)
StatSummarizer::StatSummarizer(const tensorflow::GraphDef& tensorflow_graph)
: StatSummarizer(StatSummarizerOptions()) {}
StatSummarizer::StatSummarizer(const tensorflow::GraphDef& tensorflow_graph,
const StatSummarizerOptions& options)
: StatSummarizer(StatSummarizerOptions()) {}
void StatSummarizer::Validate(const Detail* detail,
const NodeExecStats& ns) const {
if (detail->outputs.size() != ns.output_size()) {

View File

@ -154,11 +154,6 @@ class StatSummarizer {
// GraphDef is not needed by the StatSummarizer.
explicit StatSummarizer(const tensorflow::GraphDef& tensorflow_graph);
// Deprecated: Use StatSummarizer(const StatSummarizerOptions&) instead. The
// GraphDef is not needed by the StatSummarizer.
StatSummarizer(const tensorflow::GraphDef& tensorflow_graph,
const StatSummarizerOptions& options);
// Adds another run's StepStats output to the aggregate counts.
void ProcessStepStats(const StepStats& step_stats);