Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ResourceGatherNd (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    func.func @gather_nd(%arg0: tensor<*x!tf_type.resource<tensor<80xf32>>>,
                         %arg1: tensor<3xf32>) {
      // CHECK: ResourceGatherNd
      // CHECK: tf_device.cluster
      // CHECK: Add
      // CHECK: ResourceGatherNd
      %0 = "tf.Const"() {value = dense<32> : tensor<i32>} : () -> tensor<i32>
      %1 = "tf.ResourceGatherNd"(%arg0, %0) {
        Tindices = i32
      } : (tensor<*x!tf_type.resource<tensor<80xf32>>>, tensor<i32>) -> tensor<1x80xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    This op gets the step id for each loop iteration.
      }];
    
      let arguments = (ins);
    
      let results = (outs
        TF_Int64Tensor:$iter_id
      );
    }
    
    def TF_ResourceGatherNdOp : TF_Op<"ResourceGatherNd", []> {
      let summary = "GatherNd on a resource.";
    
      let description = [{
    This op reads the variable referenced by the first argument, and
    then performs a GatherNd operation on it.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top