aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Updates remaining examples in examples/learn.Gravatar A. Unique TensorFlower2017-06-29
| | | | PiperOrigin-RevId: 160538962
* [TF:XLA] Change XlaCompiler's resolve_compile_time_constants option to a ↵Gravatar Peter Hawkins2017-06-29
| | | | | | | | per-compilation option. Don't resolve compile time constants in while loops since we must preserve the loop signature. PiperOrigin-RevId: 160535393
* Allow the pruner to prune fully placed graphsGravatar Benoit Steiner2017-06-29
| | | | PiperOrigin-RevId: 160528361
* Fix shape error when a Placeholder operator with a partial shape is executed ↵Gravatar Peter Hawkins2017-06-29
| | | | | | and not fed. The PlaceholderOp constructor was attempting to convert its shape attribute to a TensorShape, which requires that the shape is fully defined. This failed with a misleading error message for a partial shape. Instead, use a PartialTensorShape. PiperOrigin-RevId: 160526882
* tfdbg: Fix wrong URL in README.mdGravatar Shanqing Cai2017-06-29
| | | | PiperOrigin-RevId: 160520466
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2017-06-29
| | | | PiperOrigin-RevId: 160518040
* Go: Update generated wrapper functions for TensorFlow ops.Gravatar A. Unique TensorFlower2017-06-29
| | | | PiperOrigin-RevId: 160515573
* Adds QuantizeAndDequantizeV3 op, which allows using a tensor for the number ↵Gravatar A. Unique TensorFlower2017-06-29
| | | | | | of quantization bits. PiperOrigin-RevId: 160515361
* Properly handle partially known placeholder shapesGravatar Benoit Steiner2017-06-28
| | | | PiperOrigin-RevId: 160488554
* Preserve node placement when folding constantsGravatar Benoit Steiner2017-06-28
| | | | PiperOrigin-RevId: 160488521
* Speed up TuplePointsToAnalysis.Gravatar Justin Lebar2017-06-28
| | | | | | | | | | | | | | | This analysis is one of the most expensive parts of the HLO optimization pipeline. - Avoid one or two unnecessary hashtable lookups in PopulateDefinedBuffersAndAliases. - Add a mode to ShapeTree wherein we avoid copying Shapes. - Use templated functors rather than std::function in ShapeTree's iterators, thus avoiding the overhead of std::function. PiperOrigin-RevId: 160487485
* [XLA] Move the flag from user_computation_flags into debug_options_flagsGravatar Eli Bendersky2017-06-28
| | | | | | | This requires some plumbing in user_computation to pipe the debug options through a few layers. PiperOrigin-RevId: 160459822
* [XLA] Move remaining hlo graph dumper flags into debug_options.Gravatar Eli Bendersky2017-06-28
| | | | | | | Also pipe debug_options through the code in hlo_graph_dumper, since the number of individual parameters was growing too large. PiperOrigin-RevId: 160446088
* [XLA] Minor changes to base test classes:Gravatar Kay Zhu2017-06-28
| | | | | | | - Change codegen_test_base and hlo_test_base to disable constant folding. - Add convenience method ExecuteAsync to ClientLibraryTestBase. PiperOrigin-RevId: 160440787
* Delete unecessary reshape opsGravatar Benoit Steiner2017-06-28
| | | | PiperOrigin-RevId: 160436466
* Make import_pb_to_tensorboard executableGravatar Brian Williammee2017-06-28
| | | | | | Add main, FLAGS, and BUILD rules. PiperOrigin-RevId: 160434643
* When GPU is configured, selection of config to set depends on value of ↵Gravatar A. Unique TensorFlower2017-06-28
| | | | | | TF_CUDA_CLANG (--config=cuda / --config=cuda_clang) PiperOrigin-RevId: 160433337
* Refine build configuration for reduce window tests.Gravatar A. Unique TensorFlower2017-06-28
| | | | PiperOrigin-RevId: 160429376
* Improve data processing in TensorForest. Extract name correctly when ↵Gravatar A. Unique TensorFlower2017-06-28
| | | | | | transforming, and support sparse categorical. PiperOrigin-RevId: 160424501
* Speed up HloInstruction::Accept by doing fewer hashtable lookups.Gravatar Justin Lebar2017-06-28
| | | | PiperOrigin-RevId: 160423850
* Don't include node_def.proto.h in node_def_util.hGravatar Geoffrey Irving2017-06-28
| | | | | | | The goal is to make kernels mostly independent of proto headers, which will let us lock down our .so imports. RELNOTES: n/a PiperOrigin-RevId: 160422647
* Only process Merge nodes involved with loops in Grappler shape inferenceGravatar A. Unique TensorFlower2017-06-28
| | | | PiperOrigin-RevId: 160422523
* Deletes iris_with_pipeline example, because core estimators are not ↵Gravatar A. Unique TensorFlower2017-06-28
| | | | | | compatible with sklearn. PiperOrigin-RevId: 160420406
* Only wait for one non-control input for Merge nodes if there is a loop. This isGravatar A. Unique TensorFlower2017-06-28
| | | | | | | to enable the propagation of shapes for conditionals, which also include Merge nodes. PiperOrigin-RevId: 160417770
* Merge version_semantics.md and data_versions.md into version_compat.mdGravatar Geoffrey Irving2017-06-28
| | | | | | Do some minor cleanup in the process. PiperOrigin-RevId: 160404421
* Minor changes to tfdbg docs.Gravatar Mark Daoust2017-06-28
| | | | | | Update the fix for the `debug_mnist` example to use `tf.nn.sigmoid_cross_entropy_with_logits`. PiperOrigin-RevId: 160397398
* In `mnist_deep.py` Write out the graph for tensorboard.Gravatar Mark Daoust2017-06-28
| | | | | | | Add a screenshot of the tensorboard diagram to the tutorial page. Fixes: #3044 PiperOrigin-RevId: 160397248
* BUILD cleanup in tensorflow/examples/...Gravatar A. Unique TensorFlower2017-06-28
| | | | PiperOrigin-RevId: 160390702
* Support only providing save_summaries_secs to MonitoredTrainingSession.Gravatar A. Unique TensorFlower2017-06-28
| | | | PiperOrigin-RevId: 160382016
* [XLA] Fix F16 implementation in Literal class.Gravatar Kay Zhu2017-06-28
| | | | PiperOrigin-RevId: 160372343
* This change fixes a bug that BaseEstimator.evaluate() ignores a function ↵Gravatar A. Unique TensorFlower2017-06-28
| | | | | | parameter `name` if SKCompat is used internally. PiperOrigin-RevId: 160370884
* Add tensor sizes to Grappler's VirtualScheduler's RunMetadata output.Gravatar A. Unique TensorFlower2017-06-28
| | | | PiperOrigin-RevId: 160369034
* [XLA] Several fixes to HLO reachability analysis.Gravatar Mark Heffernan2017-06-28
| | | | | | | | (1) Account for control dependencies in reachability. (2) Invert sense of reachability. We draw our HLO graphs with arrows from producers to consumers so it makes more sense for reachability to be defined along the direction of these edges. (3) Rename ComputeTransitiveOperands to ComputeReachability. PiperOrigin-RevId: 160366307
* Use a non-empty default value for the entry point for tfcompile.Gravatar A. Unique TensorFlower2017-06-28
| | | | | | | This ensures we get a sane output when tfcompile is invoked manually without only the bare minimum command line arguments. PiperOrigin-RevId: 160363243
* Bugfix to scatter_nd non-aliasing op: properly assign Tensor if forwarding ↵Gravatar Eugene Brevdo2017-06-27
| | | | | | worked. PiperOrigin-RevId: 160362310
* Use std::move to avoid allocations.Gravatar A. Unique TensorFlower2017-06-27
| | | | PiperOrigin-RevId: 160354628
* [XLA] Make logical buffer coloring run on output of points-to analysis.Gravatar A. Unique TensorFlower2017-06-27
| | | | PiperOrigin-RevId: 160354095
* Enable tfprof on WindowsGravatar A. Unique TensorFlower2017-06-27
| | | | PiperOrigin-RevId: 160351254
* Go: Update generated wrapper functions for TensorFlow ops.Gravatar A. Unique TensorFlower2017-06-27
| | | | PiperOrigin-RevId: 160347179
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2017-06-27
| | | | PiperOrigin-RevId: 160346151
* Merge changes from github.Gravatar A. Unique TensorFlower2017-06-27
| | | | PiperOrigin-RevId: 160344052
* Go: Update generated wrapper functions for TensorFlow ops.Gravatar A. Unique TensorFlower2017-06-27
| | | | PiperOrigin-RevId: 160341769
* Add checkpoint conversion for models that use the attention mechanism ↵Gravatar A. Unique TensorFlower2017-06-27
| | | | | | implemented in tensorflow/contrib/legacy_seq2seq/python/ops/seq2seq.py. PiperOrigin-RevId: 160340994
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2017-06-27
| | | | PiperOrigin-RevId: 160340888
* Fix bugs in ScatterNd and add ScatterNdNonAliasingAdd.Gravatar Eugene Brevdo2017-06-27
| | | | | | | | | tf.scatter_nd_non_aliasing_add acts similarly to tf.scatter_nd_add but works on non-ref objects (i.e., Tensors -- not Variables). This means it has a gradient with respect to the primary input as well as the updates. It does its best to avoid making extra copies of the input. PiperOrigin-RevId: 160339328
* Internal change.Gravatar Dandelion Man?2017-06-27
| | | | PiperOrigin-RevId: 160339087
* Add note about `tf.test.mock` to docs for `tf.test`Gravatar Mark Daoust2017-06-27
| | | | PiperOrigin-RevId: 160338811
* Add name_scopes to mnist_deep.py for a cleaner graph layout.Gravatar Mark Daoust2017-06-27
| | | | PiperOrigin-RevId: 160338775
* Minor cleanup: remove unused dependencies and inclusionsGravatar A. Unique TensorFlower2017-06-27
| | | | PiperOrigin-RevId: 160334030
* Make ResourceHandle not be a protoGravatar Geoffrey Irving2017-06-27
| | | | | | | I'm trying to make core/kernels independent of protos. Currently the dtype ResourceHandle is itself a proto. After this CL, ResourceHandle is a normal C++ type which gets converted to/from ResourceHandleProto at (de)serialization time. RELNOTES: n/a PiperOrigin-RevId: 160329002