Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for TensorListGetItem (0.24 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    size, and each pop will be turned into a `tf.Slice` and a copy of the buffer
    with decremented size. Each `tf.TensorListSetItem` will be turned into a
    `tf.XlaDynamicUpdateSlice` with unchanged size, and each `tf.TensorListGetItem`
    will be rewritten to a `tf.Slice`.
    
    The pass also works across control flow and functional calls.
    
    For example, the TensorList ops in the following function:
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      let results = (outs
        TF_Tensor:$values
      );
    
      TF_DerivedResultTypeAttr element_dtype = TF_DerivedResultTypeAttr<0>;
    }
    
    def TF_TensorListGetItemOp : TF_Op<"TensorListGetItem", [Pure]> {
      let summary = "";
    
      let arguments = (ins
        TF_VariantTensor:$input_handle,
        TF_Int32Tensor:$index,
        TF_Int32Tensor:$element_shape
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top