Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for lhs_dilation (0.2 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

                                                 kernel_spatial_dimensions = #vhlo.tensor_v1<dense<[0, 1]> : tensor<2xi64>>,
                                                 lhs_dilation = #vhlo.tensor_v1<dense<1> : tensor<2xi64>>,
                                                 output_batch_dimension = #vhlo.integer_v1<0 : i64>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema.fbs

    table StablehloSliceOptions{
      start_indices : [long];
      limit_indices : [long];
      strides : [long];
    }
    
    table StablehloConvolutionOptions{
      window_strides : [long];
      padding : [long];
      lhs_dilation : [long];
      rhs_dilation : [long];
      window_reversal : [bool];
      input_batch_dimension : long;
      input_feature_dimension : long;
      input_spatial_dimensions : [long];
      kernel_input_feature_dimension : 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/tf2xla/transforms/legalize_tf.cc

        // Compute ConvDimensionNumbers, dilation, and padding.
        SmallVector<int64_t, num_spatial_dims> spatial_dims;
        SmallVector<int64_t, num_spatial_dims> lhs_dilation;
        SmallVector<int64_t, num_spatial_dims> rhs_dilation;
        SmallVector<int64_t, num_spatial_dims * 2> paddings;
    
        for (int i : llvm::seq<int>(0, num_spatial_dims)) {
          const int64_t spatial_dim =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      { auto _e = lhs_dilation(); if (_e) { _o->lhs_dilation.resize(_e->size()); for (::flatbuffers::uoffset_t _i = 0; _i < _e->size(); _i++) { _o->lhs_dilation[_i] = _e->Get(_i); } } else { _o->lhs_dilation.resize(0); } }
      { auto _e = rhs_dilation(); if (_e) { _o->rhs_dilation.resize(_e->size()); for (::flatbuffers::uoffset_t _i = 0; _i < _e->size(); _i++) { _o->rhs_dilation[_i] = _e->Get(_i); } } else { _o->rhs_dilation.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)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %feature_group_count = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      %lhs_dilation = "tf.Const"() {value = dense<[4, 1, 1]> : tensor<3xi32>} : () -> tensor<3xi32>
      %rhs_dilation = "tf.Const"() {value = dense<1> : tensor<3xi32>} : () -> tensor<3xi32>
      %padding = "tf.Const"() {value = dense<0> : tensor<3x2xi32>} : () -> tensor<3x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      if (lhs_dilation_attr.getType().getRank() != 1)
        return op.emitOpError() << "expects lhs_dilation to be a vecotr";
    
      if (rhs_dilation_attr.getType().getRank() != 1)
        return op.emitOpError() << "expects rhs_dilation to be a vecotr";
    
      if (feature_group_count_attr.getType().getRank())
        return op.emitOpError() << "expects feature_group_count to be a scalar";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      %1 = stablehlo.convolution(%arg0, %0) dim_numbers = [b, 0, 1, f]x[0, 1, i, o]->[b, 0, 1, f], window = {pad = [[1, 1], [1, 1]]} {batch_group_count = 1 : i64, feature_group_count = 1 : i64, window_strides = array<i64: 1, 1>, lhs_dilation = array<i64: 3, 3>} : (tensor<1x5x5x2x!quant.uniform<i8:f32, 2.000000e+00:0>>, tensor<2x2x2x4x!quant.uniform<i8:f32:3, {3.000000e+00, 3.000000e+00, 3.000000e+00, 3.000000e+00}>>) -> tensor<1x14x14x4x!quant.uniform<i32:f32:3, {6.000000e+00, 6.000000e+00,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %feature_group_count = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      %lhs_dilation = "tf.Const"() {value = dense<[4, 1, 1]> : tensor<3xi32>} : () -> tensor<3xi32>
      %rhs_dilation = "tf.Const"() {value = dense<1> : tensor<3xi32>} : () -> tensor<3xi32>
      %padding = "tf.Const"() {value = dense<0> : tensor<3x2xi32>} : () -> tensor<3x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        StrAttr:$padding,
        DefaultValuedOptionalAttr<I64ArrayAttr, "{}">:$explicit_padding,
        DefaultValuedOptionalAttr<I64ArrayAttr, "{}">:$lhs_dilation,
        DefaultValuedOptionalAttr<I64ArrayAttr, "{}">:$rhs_dilation,
        DefaultValuedOptionalAttr<I64Attr, "1">:$batch_group_count,
        DefaultValuedOptionalAttr<I64Attr, "1">:$feature_group_count,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                mlir::cast<mlir::vhlo::TensorV1Attr>(vhlo_op.getPadding()),
                vhlo_type_converter));
            auto lhs_dialation = builder_.CreateVector(mlir::GetVector<int64_t>(
                mlir::cast<mlir::vhlo::TensorV1Attr>(vhlo_op.getLhsDilation()),
                vhlo_type_converter));
            auto rhs_dialation = builder_.CreateVector(mlir::GetVector<int64_t>(
                mlir::cast<mlir::vhlo::TensorV1Attr>(vhlo_op.getRhsDilation()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top