Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TF_StrTensor (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        because the tensors are loaded asynchronously.
      }];
    
      let arguments = (ins
        Arg<TF_StrTensor, [{Must have a single element.  The prefix of a V2 checkpoint.}]>:$prefix,
        Arg<TF_StrTensor, [{shape {N}.  The names of the tensors to be restored. This is tensor name in the model.}]>:$tensor_names,
        Arg<TF_StrTensor, [{shape {N}.  The slice specs of the tensors to be restored.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary =
        "Transforms a vector of tf.Example protos (as strings) into typed tensors.";
    
      let arguments = (ins
        TF_StrTensor:$serialized,
        TF_StrTensor:$names,
        TF_StrTensor:$sparse_keys,
        TF_StrTensor:$dense_keys,
        TF_StrTensor:$ragged_keys,
        Variadic<TensorOf<[TF_Float32, TF_Int64, TF_Str]>>:$dense_defaults,
    
        ConfinedAttr<I64Attr, [IntMinValue<0>]>:$num_sparse,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_VariantTensor, [{A variant tensor representing the input dataset.}]>:$input_dataset,
        Arg<TF_StrTensor, [{A `tf.string` vector `tf.Tensor` identifying user enabled optimizations.}]>:$optimizations_enabled,
        Arg<TF_StrTensor, [{A `tf.string` vector `tf.Tensor` identifying user disabled optimizations.}]>:$optimizations_disabled,
        Arg<TF_StrTensor, [{A `tf.string` vector `tf.Tensor` identifying optimizations by default.}]>:$optimizations_default,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // String/variant/resource types (including corresponding reference types)
    
    def TF_Str : AnyTypeOf<
      [TF_TensorFlowType<"String", "str">, TF_StrRef], "string">;
    def TF_StrTensor : TensorOf<[TF_Str]>;
    
    def TF_Variant : AnyTypeOf<
      [TF_TensorFlowType<"Variant", "var">, TF_VariantRef], "variant">;
    def TF_VariantTensor : TensorOf<[TF_Variant]>;
    
    def TF_Resource : AnyTypeOf<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
Back to top