aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/framework/tensor_slice_test.cc
Commit message (Collapse)AuthorAge
* TensorSlice: add operator==().Gravatar Zongheng Yang2016-09-07
| | | | Change: 132441991
* TensorSlice: fix a subtle, long-standing bug with IsFullAt().Gravatar Zongheng Yang2016-09-01
| | | | | | | | | Discovered during the development of V2 format. This has not been triggered since the TensorSlice class has seen little use outside of the V1 codepath. That code path has made careful use of it to not violate the implicit contract (that lengths_[d] == -1 iff starts_[d] == 0). Change: 131950924
* Add TensorSlice::IsFull().Gravatar Zongheng Yang2016-08-25
| | | | Change: 131366634
* Adding support for int64 tensor slices.Gravatar Rohan Jain2016-08-05
| | | | Change: 129482582
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Optimize TensorSliceSet overlap checking.Gravatar A. Unique TensorFlower2016-02-12
| | | | | | | | | | Maintain 'hull slice' which covers all existing slices. If a new slice doesn't intersect with the 'hull slice', then there is no need in checking all existing slices. This optimization reduces O(N*N) time to O(N) when slices are being added consequently. Change: 114498099
* TensorFlow: ASSERT_OK and EXPECT_OK are also defined in other projectsGravatar Vijay Vasudevan2016-01-27
| | | | | | that are built with TensorFlow (protobuf), so prefix our macros with TF_ to make them project specific. Change: 113197186
* Change DebugString behavior to ShortDebugStringGravatar Geoffrey Irving2016-01-20
| | | | | | | | | The old behavior of DebugString is needlessly verbose and is quite confusing for scalar shapes (it produced the empty string). Now DebugString is the same as ShortDebugString. A future commit will remove ShortDebugString. Change: 112590646
* 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
* 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: Doc and linter fixes, some additional tests andGravatar Vijay Vasudevan2015-11-16
| | | | | | | | | | | | | | error handling, updates to website. Changes: - Removes redundant reshape from image models by @mrry - Default TensorBoard to localhost by @danmane - Reformatting of tensorflow/core by @josh11b - Make tutorials backwards compatible to 0.5.0 by @girving - Improve print documentation (md files not updated). - Add proper scrolling to sitemap by @martinwicke Base CL: 107956254
* 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