Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for kernel_input_feature_dimension (0.65 sec)

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

                                                 input_spatial_dimensions = #vhlo.tensor_v1<dense<[1, 2]> : tensor<2xi64>>,
                                                 kernel_input_feature_dimension = #vhlo.integer_v1<2 : i64>,
                                                 kernel_output_feature_dimension = #vhlo.integer_v1<3 : 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/flatbuffer_operator.cc

            "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)));
        attributes.emplace_back(builder.getNamedAttr(
            "kernel_output_feature_dimension",
            BuildVhloIntV1Attr(op->kernel_output_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)
  3. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

                input_feature_dimension: 3
                input_spatial_dimensions: 1
                input_spatial_dimensions: 2
                kernel_output_feature_dimension: 3
                kernel_input_feature_dimension: 2
                kernel_spatial_dimensions: 0
                kernel_spatial_dimensions: 1
                output_batch_dimension: 0
                output_feature_dimension: 3
                output_spatial_dimensions: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

        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,
          output_feature_dimension = 3,
          output_spatial_dimensions = [1, 2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                .getDimSize(input_feature_dimension);
        const int kernel_input_feature_dimension =
            dnums.getKernelInputFeatureDimension();
        const int kernel_input_channels =
            mlir::cast<ShapedType>(conv_op.getRhs().getType())
                .getDimSize(kernel_input_feature_dimension);
        const int64_t feature_group_count = conv_op.getFeatureGroupCount();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

      for (auto value : dnums_input.input_spatial_dimensions()) {
        dnums.add_input_spatial_dimensions(value);
      }
      dnums.set_kernel_input_feature_dimension(
          dnums_input.kernel_input_feature_dimension());
      dnums.set_kernel_output_feature_dimension(
          dnums_input.kernel_output_feature_dimension());
      for (auto value : dnums_input.kernel_spatial_dimensions()) {
        dnums.add_kernel_spatial_dimensions(value);
    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

      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;
      output_feature_dimension : long;
      output_spatial_dimensions	: [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.getInputFeatureDimension())
                                               .getValue()
                                               .getSExtValue();
            auto kernel_input_feature_dimension =
                mlir::cast<mlir::vhlo::IntegerV1Attr>(
                    vhlo_op.getKernelInputFeatureDimension())
                    .getValue()
                    .getSExtValue();
    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

      }
      void add_kernel_input_feature_dimension(int64_t kernel_input_feature_dimension) {
        fbb_.AddElement<int64_t>(StablehloConvolutionOptions::VT_KERNEL_INPUT_FEATURE_DIMENSION, kernel_input_feature_dimension, 0);
      }
      void add_kernel_output_feature_dimension(int64_t kernel_output_feature_dimension) {
    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

      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 =
          kernel_tensor_shape[dnums.kernel_output_feature_dimension()];
    
      if (feature_group_count_val <= 0) {
        return op.emitOpError()
    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