Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IteratorGetNextSync (0.17 sec)

  1. 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)
  2. 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