Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for input_feature_dimension (0.7 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        const int input_feature_dimension = dnums.getInputFeatureDimension();
        const int kernel_input_feature_dimension =
            dnums.getKernelInputFeatureDimension();
        const int input_channels =
            mlir::cast<ShapedType>(conv_op.getLhs().getType())
                .getDimSize(input_feature_dimension);
        const int kernel_input_channels =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

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

            "input_batch_dimension",
            BuildVhloIntV1Attr(op->input_batch_dimension, builder)));
        attributes.emplace_back(builder.getNamedAttr(
            "input_feature_dimension",
            BuildVhloIntV1Attr(op->input_feature_dimension, builder)));
        attributes.emplace_back(builder.getNamedAttr(
            "kernel_input_feature_dimension",
            BuildVhloIntV1Attr(op->kernel_input_feature_dimension, builder)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

      tensorflow::UniformQuantizedConvolutionDimensionNumbersAttr dimension_numbers;
      if (!tensorflow::protobuf::TextFormat::ParseFromString(
              R"pb(
                input_batch_dimension: 0
                input_feature_dimension: 3
                input_spatial_dimensions: 1
                input_spatial_dimensions: 2
                kernel_output_feature_dimension: 3
                kernel_input_feature_dimension: 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

      %0 = "mhlo.convolution"(%arg0, %arg1) {batch_group_count = 1 : i64,
        dimension_numbers = #mhlo.conv<raw
          input_batch_dimension = 0,
          input_feature_dimension = 3,
          input_spatial_dimensions = [1, 2],
          kernel_input_feature_dimension = 2,
          kernel_output_feature_dimension = 3,
          kernel_spatial_dimensions = [0, 1],
          output_batch_dimension = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

            &dnums_input) {
      xla::ConvolutionDimensionNumbers dnums;
      dnums.set_input_batch_dimension(dnums_input.input_batch_dimension());
      dnums.set_input_feature_dimension(dnums_input.input_feature_dimension());
      for (auto value : dnums_input.input_spatial_dimensions()) {
        dnums.add_input_spatial_dimensions(value);
      }
      dnums.set_kernel_input_feature_dimension(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema.fbs

    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;
      kernel_output_feature_dimension : long;
      kernel_spatial_dimensions : [long];
      output_batch_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)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                                             vhlo_op.getInputBatchDimension())
                                             .getValue()
                                             .getSExtValue();
            auto input_feature_dimension = mlir::cast<mlir::vhlo::IntegerV1Attr>(
                                               vhlo_op.getInputFeatureDimension())
                                               .getValue()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        fbb_.AddElement<int64_t>(StablehloConvolutionOptions::VT_INPUT_BATCH_DIMENSION, input_batch_dimension, 0);
      }
      void add_input_feature_dimension(int64_t input_feature_dimension) {
        fbb_.AddElement<int64_t>(StablehloConvolutionOptions::VT_INPUT_FEATURE_DIMENSION, input_feature_dimension, 0);
      }
      void add_input_spatial_dimensions(::flatbuffers::Offset<::flatbuffers::Vector<int64_t>> input_spatial_dimensions) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return success();
      }
    
      auto feature_group_count_val =
          feature_group_count_attr.getValues<IntegerAttr>()[0].getInt();
      auto input_features = input_tensor_shape[dnums.input_feature_dimension()];
      auto input_batch = input_tensor_shape[dnums.input_batch_dimension()];
      auto kernel_input_features =
          kernel_tensor_shape[dnums.kernel_input_feature_dimension()];
      auto kernel_output_features =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top