aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/strings/str_util.h
diff options
context:
space:
mode:
authorGravatar Pete Warden <petewarden@google.com>2017-01-06 12:17:38 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-06 12:32:16 -0800
commit053087ff366bed02eeec858ddd856ce4a78bbfa9 (patch)
tree8776f97cfadc8ca2ea76057bb8398d44aac1099a /tensorflow/core/lib/strings/str_util.h
parentffbff3b08173eda5eab72ade86d37677ba1d5a4e (diff)
Add input initialization values to benchmark
Change: 143800723
Diffstat (limited to 'tensorflow/core/lib/strings/str_util.h')
-rw-r--r--tensorflow/core/lib/strings/str_util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tensorflow/core/lib/strings/str_util.h b/tensorflow/core/lib/strings/str_util.h
index 183b18a5c6..bfecfef6cb 100644
--- a/tensorflow/core/lib/strings/str_util.h
+++ b/tensorflow/core/lib/strings/str_util.h
@@ -122,6 +122,8 @@ bool SplitAndParseAsInts(StringPiece text, char delim,
std::vector<int32>* result);
bool SplitAndParseAsInts(StringPiece text, char delim,
std::vector<int64>* result);
+bool SplitAndParseAsFloats(StringPiece text, char delim,
+ std::vector<float>* result);
// ------------------------------------------------------------------
// Implementation details below