aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Update recompute_grad for TPUGravatar A. Unique TensorFlower2018-03-26
| | | | PiperOrigin-RevId: 190536468
* [XLA] Redesign: implement and test unary and binary ops.Gravatar A. Unique TensorFlower2018-03-26
| | | | | | | | Also, - Templatized ComputeAndCompareRX and CreateRXParameter so that they accept XlaBuilder and XlaOp. - Clear data held by an XlaBuilder when Build() is called, otherwise errors will occur when the builder is reused. PiperOrigin-RevId: 190534245
* Fix some compiler warnings in MKL-DNN build.Gravatar A. Unique TensorFlower2018-03-26
| | | | PiperOrigin-RevId: 190532168
* Clarify eager gradient doc stringsGravatar Igor Ganichev2018-03-26
| | | | PiperOrigin-RevId: 190526387
* Add description of shapes and a pointer to external tutorial notebook in ↵Gravatar A. Unique TensorFlower2018-03-26
| | | | | | `tf.distributions.Distribution`. PiperOrigin-RevId: 190521666
* Quick fix to assign_moving_average documentation formatting.Gravatar A. Unique TensorFlower2018-03-26
| | | | PiperOrigin-RevId: 190517622
* Global rename of py2tf to autographGravatar A. Unique TensorFlower2018-03-26
| | | | PiperOrigin-RevId: 190515509
* Add additional protobuf imports.Gravatar Jiri Simsa2018-03-26
| | | | PiperOrigin-RevId: 190514839
* Internal change.Gravatar Anna R2018-03-26
| | | | PiperOrigin-RevId: 190512928
* Add header guard to lstm_utils.Gravatar A. Unique TensorFlower2018-03-26
| | | | PiperOrigin-RevId: 190512302
* Optimized ops, move code to early, common, section so that it can be shared.Gravatar A. Unique TensorFlower2018-03-26
| | | | PiperOrigin-RevId: 190511964
* Clarify doc strings on gradient methodsGravatar Igor Ganichev2018-03-26
| | | | PiperOrigin-RevId: 190508614
* Internal change.Gravatar Anna R2018-03-26
| | | | PiperOrigin-RevId: 190507631
* Internal change.Gravatar Anna R2018-03-26
| | | | PiperOrigin-RevId: 190504933
* tfdbg CLI: Allow node exclusion with tensor filtersGravatar Shanqing Cai2018-03-26
| | | | | | | | | | | | | | | | | Fixes: #16619 See the referred GitHub issue for details, but users want to be able to skip certain nodes when searching for inf/nans, because some nodes generate inf/nans even in nominal conditions. This CL adds a new optional flag `--filter_exclude_node_names` (or `-fenn` for short), which allows users to do exactly that, by using a regex for node names. RELNOTES: tfdbg CLI: Allow exclusion of nodes by regular expressions during tensor filter-enabled Session runs: see the new flags `--filter_exclude_node_names` (or `-fenn` for short). PiperOrigin-RevId: 190504225
* LSTM support: Support fused activation functions in int16 Add ops.Gravatar A. Unique TensorFlower2018-03-26
| | | | PiperOrigin-RevId: 190503823
* Extended experimental C API with MNIST dataset/iterators support.Gravatar Mingsheng Hong2018-03-26
| | | | PiperOrigin-RevId: 190500020
* Revert to initializing number of threads when SetNumThreads is called. ↵Gravatar A. Unique TensorFlower2018-03-26
| | | | | | | | Requiring it to happen before OpInit() is way too confusing for users. PiperOrigin-RevId: 190499644
* Make the CSE ("node deduping") pass in ArithmeticOptimizer more robust in ↵Gravatar A. Unique TensorFlower2018-03-26
| | | | | | the presence of ops that modify their inputs in-place: Do not dedup nodes if the underlying buffers for their outputs may be passed to an in-place op. PiperOrigin-RevId: 190499037
* Made the NumElements function more accurateGravatar Benoit Steiner2018-03-26
| | | | PiperOrigin-RevId: 190497916
* tf.GradientTape: Clearly say that tf.while_loop and tf.cond are not supportedGravatar Asim Shankar2018-03-26
| | | | | | by tf.GradientTape.gradient() at this time. PiperOrigin-RevId: 190494436
* BUGFIX: Fix failure-to-broadcast in Wishart.sample.Gravatar Joshua V. Dillon2018-03-26
| | | | PiperOrigin-RevId: 190493969
* Fixes an issue with calling tf.contrib.seq2seq.dynamic_decode with an ↵Gravatar A. Unique TensorFlower2018-03-26
| | | | | | | | extended BasicDecoder which for example returns a tf.contrib.seq2seq.AttentionWrapperState. In this case the internal while-loop fails when trying to store an instance tf.contrib.seq2seq.AttentionWrapperState in the internal TensorArray. PiperOrigin-RevId: 190491787
* [tf.data] Usability improvements to `tf.contrib.data.make_csv_dataset`.Gravatar Rachel Lim2018-03-26
| | | | PiperOrigin-RevId: 190489086
* Added experimental C APIs to build a stack of dataset + iterator nodes thatGravatar Mingsheng Hong2018-03-26
| | | | | | reads imagenet TFRecord files. PiperOrigin-RevId: 190488817
* Adding a FunctionBufferingResourceReset Op that resets the state of the ↵Gravatar Rohan Jain2018-03-26
| | | | | | function buffering resource so that we can start using it with re-initializable iterators. PiperOrigin-RevId: 190484110
* Automated g4 rollback of changelist 190293303Gravatar A. Unique TensorFlower2018-03-26
| | | | PiperOrigin-RevId: 190479555
* Updated test (but not source) of ↵Gravatar A. Unique TensorFlower2018-03-26
| | | | | | https://www.tensorflow.org/api_docs/python/tf/contrib/training/HParams to show that it allows '=' in the values. PiperOrigin-RevId: 190470578
* Disable flaky prefetching_ops_test.Gravatar Gunhan Gulsoy2018-03-25
| | | | PiperOrigin-RevId: 190416108
* Always cast `tf.distributions.Distribution` `_event_shape`, `_batch_shape`.Gravatar Joshua V. Dillon2018-03-25
| | | | PiperOrigin-RevId: 190415923
* Minor Error type and documentation fix.Gravatar Petros Mol2018-03-25
| | | | PiperOrigin-RevId: 190411045
* Use compat.as_bytes() instead of str.encode().Gravatar Skye Wanderman-Milne2018-03-25
| | | | PiperOrigin-RevId: 190409217
* Add skeleton code for DebugStripper.Gravatar A. Unique TensorFlower2018-03-25
| | | | PiperOrigin-RevId: 190391193
* Restore dependencies that are needed by the PIP package builderGravatar A. Unique TensorFlower2018-03-25
| | | | PiperOrigin-RevId: 190387090
* Build and import rules for distributed strategyGravatar Priya Gupta2018-03-25
| | | | PiperOrigin-RevId: 190367484
* Misc typo fixes in the XLA sources and docs.Gravatar Dimitris Vardoulakis2018-03-25
| | | | PiperOrigin-RevId: 190322644
* Trivial update of layer imports in eager execution examples, to reflect ↵Gravatar Francois Chollet2018-03-25
| | | | | | recommended practices. PiperOrigin-RevId: 190319480
* [XLA] Redesign: implement Reshape and Transpose.Gravatar A. Unique TensorFlower2018-03-25
| | | | | | | | Also, - Templatize ClientLibraryTestBase::CreateParameterAndTransferLiteral. The implementation is moved from .cc to .h because otherewise the linker complains. - Migrate some reshape tests to use the XlaBuilder. PiperOrigin-RevId: 190317960
* [XLA] Prevent using XlaOp from the wrong XlaBuilder.Gravatar A. Unique TensorFlower2018-03-25
| | | | PiperOrigin-RevId: 190312254
* A couple of small device-related utilities.Gravatar A. Unique TensorFlower2018-03-25
| | | | PiperOrigin-RevId: 190312148
* Fix loop variable type and status propagationGravatar A. Unique TensorFlower2018-03-25
| | | | PiperOrigin-RevId: 190308776
* Adding support for iterating through a tf.data.Dataset for a single epoch.Gravatar A. Unique TensorFlower2018-03-25
| | | | PiperOrigin-RevId: 190307545
* When import_scoped_meta_graph is called within a name scope,Gravatar A. Unique TensorFlower2018-03-25
| | | | | | | | but called without an import_scope, the names of the created variables are wrong, resulting in key not found errors when adding these variables to their corresponding collections. PiperOrigin-RevId: 190306555
* Switch Android C++ compilation mode to "-std=c++11".Gravatar A. Unique TensorFlower2018-03-25
| | | | PiperOrigin-RevId: 190306256
* Go: Update generated wrapper functions for TensorFlow ops.Gravatar A. Unique TensorFlower2018-03-25
| | | | PiperOrigin-RevId: 190302194
* Set the stream in TransformTensor.Gravatar Guangda Lai2018-03-25
| | | | PiperOrigin-RevId: 190300166
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-03-25
| | | | PiperOrigin-RevId: 190299240
* Make _USE_C_API = True and _USE_C_SHAPES = False work with handle data.Gravatar Skye Wanderman-Milne2018-03-25
| | | | | | | | This change makes _set_shapes_for_outputs_c_api fetch and set Tensor._handle_data. This is necessary for running the Python shape inference code on resource tensors. PiperOrigin-RevId: 190293303
* bug fix: evaluate nodes before swap the original graphGravatar A. Unique TensorFlower2018-03-25
| | | | PiperOrigin-RevId: 190291844
* Moves TensorHandleCopyToDevice to TensorHandle::CopyToDevice.Gravatar Alexandre Passos2018-03-25
| | | | PiperOrigin-RevId: 190291768