aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/saved_tensor_slice_util.h
Commit message (Collapse)AuthorAge
* fix C++ header guards.Gravatar A. Unique TensorFlower2018-08-21
| | | | PiperOrigin-RevId: 209679086
* Support quint16 in Assign on CPU.Gravatar Ben Lee2018-06-25
| | | | | | - Add missing TENSOR_PROTO_EXTRACT_TYPE for quint16 PiperOrigin-RevId: 202013023
* Expose the helper function ParseShapeAndSlice in saved_tensor_slice_util.h.Gravatar Zongheng Yang2016-08-13
| | | | | While at it, changing its return value to return a Status instead of a bool. Change: 130191562
* Updated TensorFlow to account for change in protobuf C++ int64 typeGravatar A. Unique TensorFlower2016-08-10
| | | | Change: 129895289
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Extend support for uint16.Gravatar A. Unique TensorFlower2016-05-13
| | | | Change: 122262298
* Make TF_CALL_REAL_NUMBER_TYPES() and related macros include Eigen::halfGravatar A. Unique TensorFlower2016-04-13
| | | | | | | | | | in addition to float. Explicitly exempt GPU effects that rely on atomics, for which we have no good solution for half yet. Note that there are still ops that don't _declare_ half support (those that use \u201callnumbertypes\u201d or similar do, those that use \u201cfloat, double\u201d don't); these will be fixed in a forthcoming commit. Change: 119786433
* Temporary rollback of half support in TF_CALL_REAL_NUMBER_TYPES()Gravatar A. Unique TensorFlower2016-04-08
| | | | | due to internal issues. Change: 119424490
* Make TF_CALL_REAL_NUMBER_TYPES() and related macros include Eigen::halfGravatar A. Unique TensorFlower2016-04-08
| | | | | | | | | | | in addition to float. Explicitly exempt GPU effects that rely on atomics, for which we have no good solution for half yet. Add some fixes in various places (some in Eigen, some in kernels) to make it all compile. Note that there are still ops that don't _declare_ half support (those that use \u201callnumbertypes\u201d or similar do, those that use \u201cfloat, double\u201d don't); these will be fixed in a forthcoming commit. Change: 119409234
* Rollforward of "Merge changes from github."Gravatar Geoffrey Irving2016-03-16
| | | | Change: 117375570
* Rollback of: "Merge changes from github."Gravatar Vijay Vasudevan2016-03-16
| | | | Change: 117304114
* Merge changes from github.Gravatar Martin Wicke2016-03-16
| | | | Change: 117301677
* Global search & replace to move to the new location forGravatar Josh Levenberg2016-01-26
| | | | | tensorflow/core/ files and build targets. Change: 113073090
* TensorFlow: upstream changes to git.Gravatar Vijay Vasudevan2015-12-10
| | | | | | | | | | | | | | | | | | | | | Change 109922312 Update dockerfiles and instructions. This CL does two things: * updates dockerfiles to use 0.6.0 * updates the instructions for the new tag format. Change 109920508 Fix broken cast_op_test Change 109919316 Enforce converting to int64 for SparseTensor indices and shape Change 109916130 Fix imagenet for Python 3 It needed some binary file modes and an iteritems -> items. Change 109912827 Enable fast c++ implementation in protobuf's python interface. Base CL: 109922840
* TensorFlow: upstrea changes from git.Gravatar Vijay Vasudevan2015-12-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change 109628097 Fix gcc 4.8.1 compile Modified from patch by @assolini here: https://github.com/tensorflow/tensorflow/issues/405 Change 109624275 Make preview frame ImageReader global so that it does not get GC'd. This may fix an issue with connecting to the camera on some devices where the underlying Surface is prematurely cleaned up (http://stackoverflow.com/questions/33437961/android-camera-2-api-bufferqueue-has-been-abandoned). Change 109620599 - improved test a little to make it easier to understand as it serves as an example for users Change 109614953 TensorFlow: update tutorials/howtos to point to correct location of files, show python example in addition to bazel. Change 109612732 TensorFlow: move reading_data into examples, change data dir to /tmp/data. Validated that they all run, but these probably need a selftest at some point. Change 109608695 Apply 'gate_gradients' only when there is more than one real gradients. Change 109605014 There are 3 obvious places to start using TensorFlow. 2/3 of the starting points do not have a link to the installation instructions. Change 109604287 Make the `tf.reshape` shape function more restrictive. Previously, it did not raise a construction-time error if the input shape and the new shape were incompatible; now it detects this and raises a `ValueError`. Change 109603375 TensorFlow: Move word2vec_basic.py from g3doc/ to examples/ There are no additional libraries this uses, so nothing else needs to be done Change 109601289 TensorBoard tag 3 Change 109600908 Decrease number of scalar values stored by TensorBoard. 10k is more than displays nicely. Change 109599464 Fix "smart restart" functionality in TensorBoard (it throws away dead data) After restarts, a file_version event is created that always has step 0. We need to ignore this. Change 109597667 Switch to using /dev/urandom for TensorFlow randomness. Using /dev/random leads to slowdown when running in an environment with poor access to an entropy source (such as some VMs). /dev/urandom has more predictable performance, and we don't require cryptographically secure random number generation, so a PRNG is good enough. Also removes the use of the RNG in DirectSession construction. This was being used to generate a session handle, which is not necessary (since a DirectSession owns its devices, we don't need a unique handle to key the OpSegment objects registered with the various devices). This addresses bugs that have been reported on the mailing list and Stack Overflow. Change 109596906 Add an is_unsigned property to dtype Change 109596830 Remove unnecessary fill in clip_by_value Change 109591880 Remove Android demo's libpthread.so dummy file (required by protobuf) from repo and generate it at compile-time. This makes the Android demo more portable, as the generated file will now always be the correct archictecture for linking. Change 109589028 Isolating out the RTTI part of TensorFlow and add non-RTTI backups for Android. This saves about 400KB of the compiled library, when compiling the Android tensorflow target with -fno-rtti. Change 109589018 Internal reworking of LSTMCell. Change 109588229 Allow bool-valued tensors to be persisted. Change 109577175 TensorBoard host defaults to 0.0.0.0 Change 109551438 TensorFlow: move mnist g3doc tutorials into tensorflow/examples. Update examples to point to the correct location. Adds tests to make sure they don't regress, do some lint cleanup. Base CL: 109630240
* 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