Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IteratorGetNextSync (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/shape-attrs.pbtxt

        key: "output_types"
        value {
          list {
            type: DT_BFLOAT16
            type: DT_FLOAT
            type: DT_DOUBLE
          }
        }
      }
    }
    node {
      name: "IteratorGetNextSync"
      op: "IteratorGetNextSync"
      input: "args_0"
      attr {
        key: "output_shapes"
        value {
          list {
            shape {
              unknown_rank: true
            }
            shape {
              dim {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 04 18:02:53 UTC 2020
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_ops.h

      REGISTER_KERNEL_BUILDER(Name("IteratorGetNextAsOptional").Device(DEVICE),    \
                              data::IteratorGetNextAsOptionalOp);                  \
      REGISTER_KERNEL_BUILDER(Name("IteratorGetNextSync").Device(DEVICE),          \
                              data::IteratorGetNextOp);                            \
      REGISTER_KERNEL_BUILDER(Name("IteratorToStringHandle")                       \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        return ConvertToMlirTensorType(output_shape, element_type, &builder);
      };
    
      if (node.type_string() == "IteratorGetNext" ||
          node.type_string() == "IteratorGetNextSync" ||
          node.type_string() == "MultiDeviceIteratorGetNextFromShard")
        return type_from_array_attr("output_shapes", "output_types");
    
      if (node.type_string() == "InfeedDequeueTuple")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        ConfinedAttr<TF_ShapeAttrArray, [ArrayMinCount<1>]>:$output_shapes
      );
    
      let results = (outs
        TF_VariantTensor:$optional
      );
    }
    
    def TF_IteratorGetNextSyncOp : TF_Op<"IteratorGetNextSync", []> {
      let summary = "Gets the next output from the given iterator.";
    
      let description = [{
    This operation is a synchronous version IteratorGetNext. It should only be used
    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