Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GatherV2 (0.21 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/ifrt/sink_variable_as_named_array.mlir

      }
    }
    
    
    // -----
    //  Decomposable Resource Ops usage
    //
    // CHECK-LABEL:  func.func @serving_default
    // CHECK:      "tf.VarHandleOp"
    // CHECK-NEXT: "tf.IfrtLoadVariable"
    // CHECK-NEXT: "tf.GatherV2"
    // CHECK-NEXT:  return 
    //
    module {
      func.func @serving_default() -> tensor<1x3xbf16> {
        %cst = "tf.Const"() <{value = dense<[1]> : tensor<1xi32>}> : () -> tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 15:33:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @gatherV2VectorIndices(%arg0 : tensor<1x2x20xf32>, %arg1 : tensor<3x5xi32>) -> tensor<1x3x5x20xf32> {
      %0 = "tf.Const"() { value = dense<[1]> : tensor<1xi32> } : () -> tensor<1xi32>
      %1 = "tf.GatherV2"(%arg0, %arg1, %0) : (tensor<1x2x20xf32>, tensor<3x5xi32>, tensor<1xi32>) -> tensor<1x3x5x20xf32>
      func.return %1 : tensor<1x3x5x20xf32>
    
    // CHECK-LABEL:gatherV2VectorIndices
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      TF_DerivedOperandTypeAttr Tindices = TF_DerivedOperandTypeAttr<1>;
      TF_DerivedOperandTypeAttr Tparams = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_GatherV2Op : TF_Op<"GatherV2", [Pure]> {
      let summary = [{
    Gather slices from `params` axis `axis` according to `indices`.
      }];
    
      let description = [{
    `indices` must be an integer tensor of any dimension (usually 0-D or 1-D).
    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