Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for kernel_input_feature_dimension (0.37 sec)

  1. 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)
  2. 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)
  3. 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