Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for mtls (0.06 sec)

  1. cluster/gce/util.sh

    #
    # Assumed vars:
    #   REPLICA_NAME
    #   PROJECT
    #   EXISTING_MASTER_NAME
    #   EXISTING_MASTER_ZONE
    #
    # $1: etcd client port
    # $2: etcd internal port
    # $3: whether etcd communication should use mtls
    # returns the result of ssh command which adds replica
    function add-replica-to-etcd() {
      local -r client_port="${1}"
      local -r internal_port="${2}"
      local -r use_mtls="${3}"
    
      TLSARG=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        auto mul_op =
            dyn_cast_or_null<TFL::MulOp>(fc_op.getInput().getDefiningOp());
        if (!mul_op) return failure();
        if (mul_op.getFusedActivationFunction() != "NONE") return failure();
    
        // Don't match muls where the multiplier constant is not 1D.
        {
          auto multiplier_shape = mlir::cast<ShapedType>(mul_op.getRhs().getType());
          if (!multiplier_shape.hasStaticShape()) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top