Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DummySeedGenerator (0.47 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

      %iter_handle = "tf.IteratorV2"() {container = "c", shared_name = "v0", output_shapes = [#tf_type.shape<>], output_types = [!tf_res]} : () -> !tf_res
      // expected-remark@below {{Result #0, ID 1 : 1}}
      %seed_handle = "tf.DummySeedGenerator"() : () -> !tf_res
      func.return
    }
    
    // -----
    
    !tf_res = tensor<*x!tf_type.resource<tensor<f32>>>
    
    // Tests that ops with same known resource type get same resource ID assigned
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "";
    
      let arguments = (ins);
    
      let results = (outs
        Res<TF_ResourceTensor, "", [TF_DatasetMemoryCacheAlloc]>:$handle
      );
    }
    
    def TF_DummySeedGeneratorOp : TF_Op<"DummySeedGenerator", []> {
      let summary = "";
    
      let arguments = (ins);
    
      let results = (outs
        Res<TF_ResourceTensor, "", [TF_DatasetSeedGeneratorAlloc]>:$handle
      );
    }
    
    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