Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AnonymousIteratorV2 (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/name_anonymous_iterators.mlir

      // CHECK-SAME: 1x42
      %0 = "tf.AnonymousIterator"() {output_shapes = [
        #tf_type.shape<1x42>], output_types = [f32]} : () -> tensor<!tf_type.resource>
      // CHECK: "tf.Iterator"
      // CHECK-SAME: 2x42
      %1, %2 = "tf.AnonymousIteratorV2"() {output_shapes = [
        #tf_type.shape<2x42>], output_types = [f32]} : () -> (tensor<!tf_type.resource>, tensor<!tf_type.variant>)
      // CHECK: "tf.Iterator"
      // CHECK-SAME: 3x42
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 14 09:25:38 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_ops.h

      REGISTER_KERNEL_BUILDER(Name("AnonymousIterator").Device(DEVICE),            \
                              data::AnonymousIteratorHandleOp);                    \
      REGISTER_KERNEL_BUILDER(Name("AnonymousIteratorV2").Device(DEVICE),          \
                              data::AnonymousIteratorHandleOp);                    \
      REGISTER_KERNEL_BUILDER(Name("AnonymousIteratorV3").Device(DEVICE),          \
    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/tests/side-effect-analysis-test.mlir

        // expected-remark@above {{ID: 7}}
        %island = tf_executor.island {
            // expected-remark@above {{ID: 5}}
            // expected-remark@above {{Successors: {6}}}
            %handle, %deleter = "tf.AnonymousIteratorV2"() {_class = ["loc:@GeneratorDataset_2"], device = "/job:tpu_host_worker/replica:0/task:0/device:CPU:0", output_shapes = [#tf_type.shape<>], output_types = [!tf_type.string]} : () -> (tensor<!tf_type.resource>, tensor<!tf_type.variant>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    resource sharing by name, and does not keep a reference to the resource
    container.}], [TF_DatasetIteratorAlloc]>:$handle
      );
    }
    
    def TF_AnonymousIteratorV2Op : TF_Op<"AnonymousIteratorV2", [TF_UniqueResourceAllocation]> {
      let summary = "A container for an iterator resource.";
    
      let arguments = (ins
        ConfinedAttr<TypeArrayAttr, [ArrayMinCount<1>]>:$output_types,
    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