Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for xds_type (0.21 sec)

  1. pkg/bootstrap/option/instances.go

    	return newOption("nodeID", value)
    }
    
    func NodeType(value string) Instance {
    	ntype := strings.Split(value, "~")[0]
    	return newOption("nodeType", ntype)
    }
    
    func XdsType(value string) Instance {
    	return newOption("xds_type", value)
    }
    
    func Region(value string) Instance {
    	return newOptionOrSkipIfZero("region", value)
    }
    
    func Zone(value string) Instance {
    	return newOptionOrSkipIfZero("zone", value)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. tools/packaging/common/envoy_bootstrap.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/batchmatmul_to_einsum.cc

        Value input_rhs = op.getY();
    
        // LHS and RHS must be a ranked tensor type
        auto lhs_type = mlir::dyn_cast<RankedTensorType>(input_lhs.getType());
        auto rhs_type = mlir::dyn_cast<RankedTensorType>(input_rhs.getType());
    
        if (!lhs_type || !rhs_type) return failure();
    
        auto lhs_shape = lhs_type.getShape();
        auto rhs_shape = rhs_type.getShape();
    
        // Ensure that input ranks are at least 2.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

      if (rhs_attr && is_valid_broadcasting(lhs_type, rhs_type, result_type)) {
        if (rhs_attr.isSplat() &&
            rhs_attr.getSplatValue<Attribute>() == identity_attr)
          return arithmetic_op.getX();
      }
    
      // Fold: Op(Identity, Operand) -> Operand for commutative operations.
      if (lhs_attr && is_commutative &&
          is_valid_broadcasting(rhs_type, lhs_type, result_type)) {
        if (lhs_attr.isSplat() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.cc

      auto lhs_type = mlir::cast<ShapedType>(lhs.getType());
      auto rhs_type = mlir::cast<ShapedType>(rhs.getType());
      const int lhs_rank = lhs_type.getRank();
      const int rhs_rank = rhs_type.getRank();
      ImplicitLocOpBuilder builder(loc, rewriter);
    
      // Collects lhs and rhs dimensions information.
      DotDimensionsInfo lhs_dot_dimensions_info(
          lhs_type, dot_dimension_numbers.getLhsBatchingDimensions(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc

        // RHS must be a ranked tensor type
        return failure();
      }
    
      auto lhs_type = mlir::cast<RankedTensorType>(input_lhs.getType());
      auto rhs_type = mlir::cast<RankedTensorType>(input_rhs.getType());
    
      // Skip int8 x int8 => int32.
      if (lhs_type.getElementType().isInteger(8) &&
          rhs_type.getElementType().isInteger(8)) {
        return rewriter.notifyMatchFailure(op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.cc

          op->getResultTypes().size() != 1) {
        return false;
      }
      Type lhs_type = op->getOperand(0).getType();
      Type rhs_type = op->getOperand(1).getType();
      Type result_type = op->getResult(0).getType();
      return !IsQuantizedTensorType(lhs_type) && IsQuantizedTensorType(rhs_type) &&
             !IsQuantizedTensorType(result_type);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

            rewriter.getDenseI64ArrayAttr({lhs_type.getRank() - 1});
    
        auto rhs_type = GetUniformQuantizedType(
            op, op.getRhs().getType(), op.getRhsScales(), op.getRhsZeroPoints(),
            /*expressed_type=*/rewriter.getF32Type(), op.getRhsQuantizationMinVal(),
            op.getRhsQuantizationMaxVal(), op.getRhsQuantizationAxis(), rewriter);
        if (failed(rhs_type)) {
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      auto lhs_type = mlir::cast<ShapedType>(op.getLhs().getType());
      auto rhs_type = mlir::cast<ShapedType>(op.getRhs().getType());
      if (!lhs_type.hasRank() || !rhs_type.hasRank()) {
        return rewriter.notifyMatchFailure(op, "unsupported unranked input type");
      }
      if (lhs_type.getRank() < 1 || 2 < lhs_type.getRank() ||
          rhs_type.getRank() < 1 || 2 < rhs_type.getRank()) {
        return rewriter.notifyMatchFailure(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      auto lhs_type = mlir::cast<ShapedType>(lhs.getType());
      auto rhs_type = mlir::cast<ShapedType>(rhs.getType());
      const int lhs_rank = lhs_type.getRank();
      const int rhs_rank = rhs_type.getRank();
      ImplicitLocOpBuilder builder(loc, rewriter);
    
      // Collects lhs and rhs dimensions information.
      DotDimensionsInfo lhs_dot_dimensions_info(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top