Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getBatchGroupCount (0.43 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      auto padding = op.getPadding();
      auto lhs_dilation = op.getLhsDilation();
      auto rhs_dilation = op.getRhsDilation();
      auto feature_group_count = op.getFeatureGroupCount();
      int64_t batch_group_count = op.getBatchGroupCount();
    
      auto input_args_have_static_shape = [&]() -> bool {
        return mlir::cast<TensorType>(input_tensor.getType()).hasStaticShape() &&
               mlir::cast<TensorType>(kernel_tensor.getType()).hasStaticShape() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            transposed_kernel_2d_op.getResult(), window_strides_2d, padding_2d,
            lhs_dilation_2d, rhs_dilation_2d, window_reversal_2d, dnums_2d,
            conv_op.getFeatureGroupCount(), conv_op.getBatchGroupCount(),
            conv_op.getPrecisionConfigAttr());
    
        OpResult conv2d_output = conv2d_op->getResult(0);
        auto conv2d_output_type = mlir::cast<ShapedType>(conv2d_output.getType());
    
        //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                    vhlo_op.getFeatureGroupCount())
                    .getValue()
                    .getSExtValue(),
                mlir::cast<mlir::vhlo::IntegerV1Attr>(vhlo_op.getBatchGroupCount())
                    .getValue()
                    .getSExtValue(),
                precision_config);
    
            return tflite::CreateOperator(
                builder_, opcode_index, builder_.CreateVector(operands),
    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