Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TensorListConcatV2 (0.7 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        rewriter.replaceOpWithNewOp<TF::ReshapeOp>(op, result_type, input,
                                                   new_shape);
        return success();
      }
    };
    
    // Converts `TensorListConcatV2` into Unpack and Concat. First we unpack
    // the input tensorlist along the first dimension, which results in N (where N
    // is the first dim's size) tensors (each with shape [element_shape]). Then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<2>;
    }
    
    def TF_TensorListConcatV2Op : TF_Op<"TensorListConcatV2", [Pure]> {
      let summary = "Concats all tensors in the list along the 0th dimension.";
    
      let description = [{
    Requires that all tensors have the same shape except the first dimension.
    
    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