Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for collapsed_slice_dims (0.38 sec)

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

      auto collapsed_slice_dims = builder_.CreateVector(collapsed_slice_dims_vec);
      auto start_index_map = builder_.CreateVector(start_index_map_vec);
      auto slice_sizes = builder_.CreateVector(
          mlir::GetOptionalVector<int64_t>(gather_op.getSliceSizes()));
    
      auto gather_option = tflite::CreateStablehloGatherOptions(
          builder_, offset_dims, collapsed_slice_dims, start_index_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema.fbs

      DilateOptions,
      StablehloRngBitGeneratorOptions,
      ReduceWindowOptions (deprecated),
      StableHLOCompositeOptions,
    }
    
    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];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

        %0 = "stablehlo.gather"(%arg0, %arg1) {
          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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_same_scale.mlir

        %7 = "stablehlo.gather"(%6, %arg2) {
        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>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        }
        slice_sizes_value =
            rewriter.create<tensor::FromElementsOp>(loc, slice_sizes_vals);
    
        // collapsed_slice_dims
        SmallVector<int64_t, 4> collapsed_slice_dims;
        collapsed_slice_dims.reserve(num_index_dims);
        for (int64_t i = 0; i < num_index_dims; ++i) {
          collapsed_slice_dims.push_back(i);
        }
        // offset_dims
        SmallVector<int64_t, 4> offset_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)
  6. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      { auto _e = collapsed_slice_dims(); if (_e) { _o->collapsed_slice_dims.resize(_e->size()); for (::flatbuffers::uoffset_t _i = 0; _i < _e->size(); _i++) { _o->collapsed_slice_dims[_i] = _e->Get(_i); } } else { _o->collapsed_slice_dims.resize(0); } }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

      %1 = stablehlo.constant dense<1> : tensor<2x3x2xi64>
      %2 = "stablehlo.gather"(%0, %1) {
      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<3x4x2xi32>, tensor<2x3x2xi64>) -> tensor<2x3x2x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: %[[V43:.*]] = "mhlo.gather"(%[[ARG]], %[[V42]]) <{dimension_numbers = #mhlo.gather<offset_dims = [0], collapsed_slice_dims = [1, 2], start_index_map = [1, 2]>, indices_are_sorted = false, slice_sizes = dense<[7, 1, 1]> : tensor<3xi64>}> : (tensor<7x140x128xi32>, tensor<2x22x128xi32>) -> tensor<7x22x128xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top