Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for indices_are_sorted (0.33 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

                                                             op->unique_indices)));
        attributes.emplace_back(builder.getNamedAttr(
            "indices_are_sorted",
            mlir::vhlo::BooleanV1Attr::get(builder.getContext(),
                                           op->indices_are_sorted)));
        attributes.emplace_back(builder.getNamedAttr(
            "index_vector_dim", BuildVhloIntV1Attr(op->index_vector_dim, builder)));
        return;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

        start_index_map = #vhlo.tensor_v1<dense<[1, 0]> : tensor<2xi64>>,
        index_vector_dim = #vhlo.integer_v1<2 : i64>,
        slice_sizes = #vhlo.tensor_v1<dense<[1, 2, 2]> : tensor<3xi64>>,
        indices_are_sorted = #vhlo.bool_v1<false>
      }> : (tensor<3x4x2xi32>, tensor<2x3x2xi64>) -> tensor<2x3x2x2xi32>
      return %result : tensor<2x3x2x2xi32>
    }
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

                              $dimension_numbers, $indices_are_sorted),
              (MHLO_GatherOp $operand, $start_indices,
                            (ToGatherDimNumsAttr $dimension_numbers),
                            (CastElementsToI64Elements $slice_sizes),
                            $indices_are_sorted),
              [(HasValidGatherDims $dimension_numbers)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec_test.cc

                offset_dims = [2, 3],
                collapsed_slice_dims = [0],
                start_index_map = [1, 0],
                index_vector_dim = 2>,
              slice_sizes = array<i64: 1, 2, 2>,
              indices_are_sorted = false
            } : (tensor<3x4x2xf32>, tensor<2x3x2xi64>) -> tensor<2x3x2x2xf32>
            func.return %2 : tensor<2x3x2x2xf32>
          }
        }
      )mlir";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_weights.mlir

        %cst = "tf.Const"() { value = dense<[1, 1, 300]> : tensor<3xi64> } : () -> tensor<3xi64>
        %0 = "tf.XlaGather"(%cst_0, %arg0, %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>
        %1 = "tf.Identity"(%0) {device = ""} : (tensor<1x300x10xf32>) -> tensor<1x300x10xf32>
        func.return %1 : tensor<1x300x10xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 42K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    table StablehloGatherOptions{
      offset_dims : [long];
      collapsed_slice_dims : [long];
      start_index_map : [long];
      index_vector_dim : long;
      slice_sizes : [long];
      indices_are_sorted : bool;
    }
    
    table StablehloTransposeOptions{
      permutation : [long];
    }
    
    enum StablehloPrecisionConfig : uint {
      DEFAULT,
      HIGH,
      HIGHEST,
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_same_scale.mlir

        dimension_numbers = #stablehlo.gather<
          offset_dims = [2, 3],
          collapsed_slice_dims = [0],
          start_index_map = [1, 0],
          index_vector_dim = 2>,
        slice_sizes = array<i64: 1, 2, 2>,
        indices_are_sorted = false
      } : (tensor<3x4x2xf32>, tensor<2x3x2xi64>) -> tensor<2x3x2x2xf32>
        %8 = "quantfork.qcast"(%7) {volatile} : (tensor<2x3x2x2xf32>) -> tensor<2x3x2x2x!quant.uniform<i8:f32, 0.13170163023705575:-1>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

      // CHECK:      %[[RESULT:.*]] = "mhlo.scatter"(%[[DEFAULT]], %[[ARG0]], %[[ARG1]])
      // CHECK-SAME: indices_are_sorted = false
      // CHECK-SAME: scatter_dimension_numbers
      // CHECK-SAME:   inserted_window_dims = [0, 1]
      // CHECK-SAME:   scatter_dims_to_operand_dims = [0, 1]
      // CHECK-SAME:   index_vector_dim = 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
Back to top