Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TensorListConcatV2 (0.42 sec)

  1. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list.mlir

      %cst = arith.constant dense<[2, 2]> : tensor<2xi32>
      %list = "tf.TensorListFromTensor"(%arg0, %cst) : (tensor<3x2x2xf32>, tensor<2xi32>) -> tensor<!tf_type.variant<tensor<f32>>>
      %t:2 = "tf.TensorListConcatV2"(%list, %cst, %lead) : (tensor<!tf_type.variant<tensor<f32>>>, tensor<2xi32>, tensor<i64>) -> (tensor<?x2xf32>, tensor<0xi64>)
      func.return %t#0, %t#1 : tensor<?x2xf32>, tensor<0xi64>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 39.9K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. 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