aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/framework/tracking_allocator_test.cc
Commit message (Collapse)AuthorAge
* Fix memory tracking in the case where temp memory is used as output memory.Gravatar Yuefeng Zhou2018-02-06
| | | | | | Track all persistent memory allocation in allocate_persistent call except for variables and queues where persistent memory is tracked in variables ops and queue ops. Deallocation of persistent memory is ignored. PiperOrigin-RevId: 184768231
* Track memory allocation/deallocation history.Gravatar A. Unique TensorFlower2017-10-05
| | | | PiperOrigin-RevId: 171239477
* Record persistent memory in tracking allocator and cost model.Gravatar Yuefeng Zhou2017-02-09
| | | | Change: 147123056
* Switch open-source to use jemalloc for CPU Tensor memory allocation, gRPC, ↵Gravatar Jonathan Hseu2017-01-11
| | | | | | | | and other places where we call malloc/free. - Only enabled on Linux for now. - Added as a ./configure option defaulting to enabled. Change: 144266237
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Made sure that the tracking allocator always counts the allocated sizes.Gravatar Benoit Steiner2016-02-25
| | | | | Made the corresponding unit test more robust. Change: 115575179
* Added the ability to track allocation sizes in the tracking allocator itself ↵Gravatar Benoit Steiner2016-02-22
| | | | | | | if the underlying allocator doesn't already do it. Change: 115263741
* Tracks some basic statistics in cpu and gpu allocator.Gravatar A. Unique TensorFlower2016-02-18
| | | | | | | The basic stats is basicly free in gpu allocator. The cpu stats collection can be optionally turned on. Change: 115000479
* 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
* Move responsibility for constructing/destructing complex objects fromGravatar A. Unique TensorFlower2016-01-14
| | | | | | a helper class in tensor.cc into the allocator class. This allows experimental devices more control over their memory allocation. Change: 112111713
* 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