Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for XlaGather (0.23 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-SAME:   start_index_map = [0, 1]
      // CHECK-SAME:   index_vector_dim = 1
      // CHECK-SAME: indices_are_sorted = true
      // CHECK-SAME: slice_sizes = dense<[1, 1, 300]> : tensor<3xi64>
    
      %0 = "tf.XlaGather"(%arg0, %arg1, %cst) {dimension_numbers = "\0A\02\00\01\12\01\00\1A\02\00\01\20\01", indices_are_sorted = true} : (tensor<200x100x300xf32>, tensor<10x2xi32>, tensor<3xi64>) -> tensor<1x300x10xf32>
      func.return %0 : tensor<1x300x10xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      }
    
      return GetI64ElementsAttr(normalized_sizes, builder);
    }
    
    //===----------------------------------------------------------------------===//
    // XlaGather op utilities.
    //===----------------------------------------------------------------------===//
    
    bool HasValidGatherDims(StringAttr attr) {
      ::xla::GatherDimensionNumbers dims;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let results = (outs
        TensorOf<[TF_Bfloat16, TF_Complex64, TF_Float32]>:$product
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_XlaGatherOp : TF_Op<"XlaGather", [Pure, TF_NoConstantFold]> {
      let summary = "Wraps the XLA Gather operator documented at";
    
      let description = [{
    https://www.tensorflow.org/xla/operation_semantics#gather
      }];
    
    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