aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/graph/costutil.h
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2016-02-17 10:42:00 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-02-17 11:27:53 -0800
commit414d50caba089b1cccaf307922e412d0a18c14f9 (patch)
treec7e4c74fa549125e2452475ed1335b98b01d9fb1 /tensorflow/core/graph/costutil.h
parent8300c32612485ebb7b15304c75d9c6c13e08bc36 (diff)
Deleted the unused costutil code
Change: 114875394
Diffstat (limited to 'tensorflow/core/graph/costutil.h')
-rw-r--r--tensorflow/core/graph/costutil.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/tensorflow/core/graph/costutil.h b/tensorflow/core/graph/costutil.h
deleted file mode 100644
index d78160e78b..0000000000
--- a/tensorflow/core/graph/costutil.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* Copyright 2015 Google Inc. 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_GRAPH_COSTUTIL_H_
-#define TENSORFLOW_GRAPH_COSTUTIL_H_
-
-#include <vector>
-#include "tensorflow/core/platform/types.h"
-
-namespace tensorflow {
-
-class CostModel;
-class Graph;
-
-// result[i] is an estimate of the longest execution path from
-// the node with id i to the sink node.
-std::vector<int64> LongestOutgoingPathCost(const Graph& graph,
- const CostModel& cm);
-
-} // namespace tensorflow
-
-#endif // TENSORFLOW_GRAPH_COSTUTIL_H_