Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for batch_dims (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    }
    
    // CHECK-LABEL: testGatherToV2
    // Ensures that axis param and batch_dims attr use their default values of 0.
    func.func @testGatherToV2(%params: tensor<4x3xf32>, %indices: tensor<1x2xi32>) -> tensor<2x3xf32> {
      // CHECK: %[[AXIS:.*]] = "tf.Const"() <{value = dense<0> : tensor<i32>}> : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

      %30 = "tf.GatherV2"(%9, %29, %5) {batch_dims = 0 : i64, device = ""} : (tensor<32x1xf32>, tensor<2x16xi32>, tensor<i32>) -> tensor<2x16x1xf32>
      %31 = "tf.AddV2"(%19, %28) {device = ""} : (tensor<2x16xi32>, tensor<2x16xi32>) -> tensor<2x16xi32>
      %32 = "tf.GatherV2"(%9, %31, %5) {batch_dims = 0 : i64, device = ""} : (tensor<32x1xf32>, tensor<2x16xi32>, tensor<i32>) -> tensor<2x16x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: [[VAL4:%.+]] = "tf.Reshape"(%arg0, [[VAL2]])
      // CHECK: [[VAL5:%.+]] = "tf.GatherV2"([[VAL4]], [[VAL3]], [[VAL0]]) <{batch_dims = 0 : i64}>
      // CHECK: [[VAL6:%.+]] = "tf.Reshape"([[VAL5]], [[VAL1]])
      // CHECK: return [[VAL6]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      MEAN = 1,
      SQRTN = 2,
    }
    
    table EmbeddingLookupSparseOptions {
      combiner:CombinerType;
    }
    
    table GatherOptions {
      axis: int;
      // Parameters for Gather version 5 or above.
      batch_dims: int = 0;
    }
    
    table TransposeOptions {
    }
    
    table ExpOptions {
    }
    
    table CosOptions {
    }
    
    table ReducerOptions {
      keep_dims: bool;
    }
    
    table SqueezeOptions {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      //      CHECK: mhlo.torch_index_select
      // CHECK-SAME:   %[[PARAMS]], %[[INDICES]]
      // CHECK-SAME:   batch_dims = 1
      // CHECK-SAME:   dim = 2
      %axis = "tf.Const"() { value = dense<[-1]> : tensor<1xi32> } : () -> tensor<1xi32>
      %1 = "tf.GatherV2"(%params, %indices, %axis) {batch_dims = -1 : i64} : (tensor<16x2x3xf32>, tensor<16x5xi32>, tensor<1xi32>) -> tensor<16x2x5xf32>
      func.return %1 : tensor<16x2x5xf32>
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema.fbs

      MEAN = 1,
      SQRTN = 2,
    }
    
    table EmbeddingLookupSparseOptions {
      combiner:CombinerType;
    }
    
    table GatherOptions {
      axis: int;
      // Parameters for Gather version 5 or above.
      batch_dims: int = 0;
    }
    
    table TransposeOptions {
    }
    
    table ExpOptions {
    }
    
    table CosOptions {
    }
    
    table ReducerOptions {
      keep_dims: bool;
    }
    
    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/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

        }
      }
    
      const int num_contract_dim = opponent_shape.size();
      opponent_required_dim -= used_rank;
    
      // Add redundant 1s to match the shape.
      // Required 1s = out_dims - # my batch_dims - my remaining dims.
      if (!is_lhs) {
        absl::c_reverse(opponent_shape);
      }
      for (int i = 0; i < opponent_required_dim; i++) {
        opponent_shape.push_back(1);
      }
      if (!is_lhs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/prepare-quantize-dynamic-range.mlir

    func.func @QuantizeGatherWeightOnly(%arg0: tensor<3xi32>) -> tensor<3x3x3x3xf32> {
      %w = arith.constant dense<1.270000e+02> : tensor<64x3x3x3xf32>
      %emb = "tfl.gather"(%w, %arg0) {axis = 0 : i32, batch_dims = 0 : i32} : (tensor<64x3x3x3xf32>, tensor<3xi32>) -> tensor<3x3x3x3xf32>
      %emb_s = "quantfork.stats"(%emb) {layerStats = dense<[0.000000e+00, 1.000000e+01]> : tensor<2xf32>} : (tensor<3x3x3x3xf32>) -> tensor<3x3x3x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TensorOf<[I16, I32, I64]>:$indices,
        I32Attr:$axis,
        DefaultValuedOptionalAttr<I32Attr, "0">:$batch_dims
      );
    
      let builders =
      [
        OpBuilder<(ins "Value":$params, "Value":$indices, "IntegerAttr":$axis, "IntegerAttr":$batch_dims),
        [{ BuildGatherOp(&$_builder, $_state, params, indices, axis, batch_dims); }]>
      ];
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      auto _axis = _o->axis;
      auto _batch_dims = _o->batch_dims;
      return tflite::CreateGatherOptions(
          _fbb,
          _axis,
          _batch_dims);
    }
    
    inline TransposeOptionsT *TransposeOptions::UnPack(const ::flatbuffers::resolver_function_t *_resolver) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top