aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/strings/str_util_test.cc
Commit message (Collapse)AuthorAge
* Speed up safe_strtod and safe_strtof functions by using double-conversion ↵Gravatar akindyakov2018-04-20
| | | | | | | | library Closes #12102. PiperOrigin-RevId: 193696537
* Added StrContains, StartsWith, and EndsWith functions to str_util.h.Gravatar A. Unique TensorFlower2018-03-16
| | | | | | | | Marked contains, starts_with, ends_with, and consume StringPiece methods as deprecated. This will allow tensorflow::StringPiece to be more easily replaced with absl::string_view (once the deprecated methods are removed) as absl::string_view does not contain those methods. PiperOrigin-RevId: 189355316
* Merge changes from github.Gravatar A. Unique TensorFlower2017-12-22
| | | | PiperOrigin-RevId: 179953488
* Fixed a bug in tensorflow::str_util::CUnescape. Added a str util test thatGravatar A. Unique TensorFlower2017-11-14
| | | | | | | | | failed without this change. The CUnescape did a const_cast to the result string's buffer, which made it write the same buffer without copying. PiperOrigin-RevId: 175714391
* Add ArgDefCase conversion to tensorflow::str_utilGravatar Igor Ganichev2017-08-29
| | | | PiperOrigin-RevId: 166905993
* Add str_util::StringReplace.Gravatar Justin Lebar2017-05-10
| | | | PiperOrigin-RevId: 155516212
* Add input initialization values to benchmarkGravatar Pete Warden2017-01-06
| | | | Change: 143800723
* Support multiple delimiters for splitting strings.Gravatar A. Unique TensorFlower2016-11-25
| | | | Change: 140215361
* GCS Resumable Upload: use int64 instead of int32 when parsing file offsets.Gravatar Alexey Surkov2016-10-14
| | | | Change: 136219797
* Add strings::HumanReadableNum to tensorflow/core/lib/strings/numbers.hGravatar A. Unique TensorFlower2016-09-18
| | | | | | | Move HumanReadableElapsedTime from tensorflow/core/lib/strings/str_util.h to tensorflow/core/lib/strings/numbers.h to match the other HumanReadable* routines. Change: 133533798
* Augment TensorFlow str_util::Join with three-argument variant that allowsGravatar A. Unique TensorFlower2016-09-12
| | | | | per element customization via a Formatter function. Change: 132926708
* Add new str_util::HumanReadableElapsedTime that formats a 'double seconds' valueGravatar A. Unique TensorFlower2016-09-06
| | | | | | using appropriate units based on the magnitude of the time interval, and add tests for this. Change: 132365945
* Fix overflow detection in ConsumeLeadingDigits.Gravatar A. Unique TensorFlower2016-07-18
| | | | Change: 127749101
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Remove NumericParse32 from str_util.h, replacing calls with safe_strto32 fromGravatar A. Unique TensorFlower2016-04-06
| | | | | | | | | | | numbers.h. This removes the duplicate code, but has a small behavior change - safe_strto32 strips leading and trailing whitespace, while NumericParse does not. But this seems okay. Also changed the flag parsing command_line_flags.cc to template on int32 instead of int. Change: 119170865
* Move #include <vector> out of port.h to users of std::vector<>.Gravatar Josh Levenberg2016-01-21
| | | | | After this we can replace port.h with types.h. Change: 112727463
* Many tensorflow/core build clean ups.Gravatar Josh Levenberg2016-01-20
| | | | Change: 112523833
* Replacing reference 'names' variable with 'example_names' variable.Gravatar A. Unique TensorFlower2016-01-20
| | | | Change: 112481326
* Remove word2vec's dependency on RE2. This is primarily to allow inputsGravatar A. Unique TensorFlower2016-01-19
| | | | | | over 2GiB in size. As part of this, add ConsumeNonWhitespace() to str_util. Change: 112436569
* TensorFlow: Improve performance of AlexnetGravatar Manjunath Kudlur2015-11-20
| | | | | | | | | | | | | | | | | | | | | | Changes: * error message that refers to removed `DefaultSession` method. * -Wnull-conversion warnings * the "_start_time" attr for recvs when the flag "--brain_enable_scheduling_for_recvs" is set. * typo in tutorial data download progress message. * a typo ("however their installing"=>"however installing"). * typo, rename "TensorFlow Mechanics" to "How To" to be consistent with the website. * a typo ("subtact"=>"subtract"). * protobuf examples in comments in tensorflow::Example.proto. * formula formatting in MNIST beginner tutorial * negative fraction-of-queue-full stats * protobuf inclusion path so that Android demo will build under Blaze. * small typo (moderatly > moderately) * Session.run() to check that tensor arguments come from the session's graph. * another six import * seq2seq typo in bazel command Base CL: 108349164
* TensorFlow: Initial commit of TensorFlow library.Gravatar Manjunath Kudlur2015-11-06
TensorFlow is an open source software library for numerical computation using data flow graphs. Base CL: 107276108