aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/ops
Commit message (Collapse)AuthorAge
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-10-09
| | | | PiperOrigin-RevId: 216452496
* Add 'remove' operation to MutableHashTable and MutableDenseHashTable.Gravatar A. Unique TensorFlower2018-10-09
| | | | PiperOrigin-RevId: 216443201
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-10-09
| | | | PiperOrigin-RevId: 216410913
* Add RaggedTensors to tf.core. Moving the RaggedGather op kernel.Gravatar A. Unique TensorFlower2018-10-09
| | | | PiperOrigin-RevId: 216400726
* [tf.data] NUMA-aware MapAndBatch dataset.Gravatar Brennan Saeta2018-10-09
| | | | PiperOrigin-RevId: 216395709
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-10-09
| | | | PiperOrigin-RevId: 216392772
* Create SDCAOptimizerV2 op to fix the "adaptative" typo.Gravatar Yuefeng Zhou2018-10-09
| | | | PiperOrigin-RevId: 216370193
* Partial support tfe.defun in tf.gradients.Gravatar Alexandre Passos2018-10-08
| | | | | | | | Doesn't attempt to deal with cases where we might have already generated the functiondef for the parent function as in that case we cannot easily modify the forward pass. PiperOrigin-RevId: 216243224
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-10-08
| | | | PiperOrigin-RevId: 216217887
* Merge pull request #21658 from lowintelligence:masterGravatar TensorFlower Gardener2018-10-08
|\ | | | | | | PiperOrigin-RevId: 216217509
* | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-10-05
| | | | | | | | PiperOrigin-RevId: 216000752
* | Merge pull request #22386 from girving:statelessGravatar TensorFlower Gardener2018-10-05
|\ \ | | | | | | | | | PiperOrigin-RevId: 215995215
| * | Expand stateless random generators to match their stateful cousinsGravatar Geoffrey Irving2018-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | stateless_random_uniform now take minval+maxval and handles ints, and stateless_normal/stateless_truncated_normal take mean+stddev. Additionally, all of the stateless functions now have proper doc strings. This is step one of moving stateless random numbers out of contrib.
* | | Merge pull request #20476 from yongtang:06052018-bincount-shapeGravatar TensorFlower Gardener2018-10-05
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 215947463
* | | | Declare that stateless random ops are not differentiable in C++ code.Gravatar Tong Shen2018-10-05
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 215935319
* | | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-10-04
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 215791283
* | | | [tf.data] Add a notion of `captured args` to MapDefunGravatar Rachel Lim2018-10-04
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 215788485
* | | | Add "encoding" attribute to string substr op, which controls how each ↵Gravatar A. Unique TensorFlower2018-10-04
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | "character" is treated: * BYTE: Position & length refer to bytes in the string. (Default) * UTF8: The string is interpreted as UTF-8 encoded Unicode code points, and position & length are treated relative to them. RELNOTES: Add option to get substring using Unicode characters PiperOrigin-RevId: 215773373
* | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-10-03
| | | | | | | | | | | | PiperOrigin-RevId: 215617800
* | | [data-stats] Sets user given `tag` and `counter_prefix` with ↵Gravatar Shivani Agrawal2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | `set_stats_aggregator`. `tag` would get prep-end with all the statistics recorded as summary and `counter_prefix` would set the prefix for the statistics recorded as counter. Note: `counter` defaults to `\tensorflow`, and `tag` and `prefix` gets associated with the dataset (not the stats_aggregator). PiperOrigin-RevId: 215609159
* | | Fix bug in shape function for transpose: If the rank of the input is unknown ↵Gravatar A. Unique TensorFlower2018-10-03
| | | | | | | | | | | | | | | | | | and the rank derived from the permutation array is 0 or 1, the shape is ambiguous and cannot be determined at graph construction time. In this case, forward the shape of the input. PiperOrigin-RevId: 215583050
* | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-10-02
| | | | | | | | | | | | PiperOrigin-RevId: 215501709
* | | Set shape for output tensors of cond_v2.Gravatar Saurabh Saxena2018-10-02
| | | | | | | | | | | | PiperOrigin-RevId: 215492782
* | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-10-02
| | | | | | | | | | | | PiperOrigin-RevId: 215448397
* | | Support shape_invariants in while_v2. Note that this arg is temporary and ↵Gravatar Saurabh Saxena2018-10-02
| | | | | | | | | | | | | | | | | | | | | | | | may be replaced by automatic shape inference in TF 2.0 (or before). Add a output_shapes attr to While op to allow output shapes to be different from the incoming loop_vars. PiperOrigin-RevId: 215446737
* | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-09-28
| | | | | | | | | | | | PiperOrigin-RevId: 214946257
* | | [tf.data] Move `tf.contrib.data` C++ code to a core "experimental" directory.Gravatar Derek Murray2018-09-28
| | | | | | | | | | | | | | | | | | | | | | | | NOTE: All ops and kernels previously previously defined in tensorflow/contrib/data have had their name prefixed with "Experimental" to indicate that they are not (yet) stable, and thus not subject to backwards or forwards compatibility guarantees. PiperOrigin-RevId: 214940819
* | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-09-27
| | | | | | | | | | | | PiperOrigin-RevId: 214863042
* | | [tf.data Introducing tf.data.Dataset.reduce() which reduces elements of a ↵Gravatar Jiri Simsa2018-09-27
| | | | | | | | | | | | | | | | | | (finite) dataset to a single element. PiperOrigin-RevId: 214852364
* | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-09-27
| | | | | | | | | | | | PiperOrigin-RevId: 214807362
* | | Add tf.strings.unicode_script, which detects the script of a unicode codepointGravatar A. Unique TensorFlower2018-09-27
| | | | | | | | | | | | | | | | | | based on standard ranges. PiperOrigin-RevId: 214796357
* | | Merge pull request #22076 from Intel-tensorflow:feature/daoxin/sliceGravatar TensorFlower Gardener2018-09-26
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 214726180
* | | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-09-26
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 214701926
* | | | Add xlogy and xdivy op.Gravatar A. Unique TensorFlower2018-09-26
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 214700693
* | | | [TF] Add new internal ops _VarHandlesOp and _ReadVariablesOp.Gravatar Peter Hawkins2018-09-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The purpose of these ops is to fix a latency problem observed for an inference benchmark. Often a inference step starts by reading the value of many (hundreds) of weights. For a resource variable, this requires a VarHandleOp and a ReadVariableOp per variable. Running hundreds of trivial ops can add hundreds of microseconds of latency to the critical path of an inference step. The inter-op latency of the executor can be hundreds of nanoseconds, which rapidly adds up. This change introduces two fused ops _VarHandlesOp and _ReadVariablesOp that allow us to read many variables in a pair of larger ops, rather than many tiny ops. PiperOrigin-RevId: 214662338
* | | | Changed FusedBatchNorm and FusedBatchNormGrad to use allowed_values for ↵Gravatar A. Unique TensorFlower2018-09-26
| | | | | | | | | | | | | | | | | | | | | | | | data_format attr. PiperOrigin-RevId: 214608039
| | | * Merge remote-tracking branch 'origin'Gravatar Cao Zongyan2018-09-26
| | | |\ | |_|_|/ |/| | |
* | | | Remove integer dtypes from Soft{plus,sign} OpDefs.Gravatar Todd Wang2018-09-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | These ops were never intended to support integer dtypes, and the OpKernels have already been removed in a previous patch. PiperOrigin-RevId: 214542750
* | | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-09-25
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 214493515
* | | | Add "encoding" attribute to string length op, which controls how "string ↵Gravatar A. Unique TensorFlower2018-09-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | length" is defined: * BYTE: The number of bytes in each string. (Default) * UTF8: The number of UTF-8 encoded Unicode code points in each string. RELNOTES: Add option to calculate string length in Unicode characters PiperOrigin-RevId: 214478470
* | | | Boosted trees: Adding categorical split support to prediction ops.Gravatar A. Unique TensorFlower2018-09-25
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 214448656
* | | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-09-23
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 214179792
* | | | Merge pull request #21715 from hsgkim:volume_patchesGravatar TensorFlower Gardener2018-09-23
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 214177065
* | | | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-09-23
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 214174935
* | | | | Moving MultiDeviceIterator from contrib to core.Gravatar Rohan Jain2018-09-23
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 214173896
| | * | | More changes.Gravatar Pan Daoxin2018-09-21
| | | | |
* | | | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-09-20
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 213873471
* | | | | Add searchsorted (ie lower/upper bound) op.Gravatar A. Unique TensorFlower2018-09-20
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 213863392
* | | | | Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-09-19
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 213729979
* | | | | Merge pull request #21114 from yongtang:07242018-CudnnRNNParamsSizeGravatar TensorFlower Gardener2018-09-19
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 213726710