Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,548 for maximal (0.11 sec)

  1. cmd/erasure-metadata-utils.go

    // corresponding error value. NB When there is more than one error value that
    // occurs maximum number of times, the error value returned depends on how
    // golang's map orders keys. This doesn't affect correctness as long as quorum
    // value is greater than or equal to simple majority, since none of the equally
    // maximal values would occur quorum or more number of times.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/cse.go

    	for _, e := range partition {
    		byDom.a = e
    		byDom.sdom = sdom
    		sort.Sort(byDom)
    		for i := 0; i < len(e)-1; i++ {
    			// e is sorted by domorder, so a maximal dominant element is first in the slice
    			v := e[i]
    			if v == nil {
    				continue
    			}
    
    			e[i] = nil
    			// Replace all elements of e which v dominates
    			for j := i + 1; j < len(e); j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

              peak.size >= new_peak.size + min_savings) {
            best_peak_mem = new_peak.size;
            best_remat = this_remat;
          }
    
          // If the actual savings achieved is bigger than the maximal savings that
          // can be possibly achieved, leave early.
          if (peak.size >= max_savings + best_peak_mem) {
            break;
          }
        }
        // We already found one savings for this length.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/nettest/conntest.go

    		t.Errorf("unexpected Write error: %v", err)
    	}
    }
    
    // chunkedCopy copies from r to w in fixed-width chunks to avoid
    // causing a Write that exceeds the maximum packet size for packet-based
    // connections like "unixpacket".
    // We assume that the maximum packet size is at least 1024.
    func chunkedCopy(w io.Writer, r io.Reader) error {
    	b := make([]byte, 1024)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            }
    
            return TryToContractEdge(from, to);
          }).status());
    
      // Phase 2: contract any remaining edges.  After this phase we should have a
      // maximal clustering:
      //
      // A. We visit a cluster only after maximally clustering all its children.
      // B. By the time we're done with a node all of its children that could have
      //    been absorbed into the node have been absorbed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

          clone.setPrivate();
          symbol_table.insert(clone);
          func.getSecond().clone = clone;
        }
      }
    
      return success();
    }
    
    // Assigns either MAXIMAL or MANUAL sharding. The MAXIMAL sharding sends/recvs
    // one message from core `kShardingTpuCore` with the full tensor. MANUAL
    // sharding sends/recvs one message for each core with the core's shard.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  7. src/strconv/ftoaryu.go

    	// Because mant >= 2^54, it is enough to choose:
    	//     2^(e2+54) >= 10^(-q+prec-1)
    	// or q = -mulByLog2Log10(e2+54) + prec - 1
    	//
    	// The minimal required exponent is -mulByLog2Log10(1025)+18 = -291
    	// The maximal required exponent is mulByLog2Log10(1074)+18 = 342
    	q := -mulByLog2Log10(e2+54) + prec - 1
    
    	// Now compute mant*(2^e2)*(10^q).
    	// Is it an exact computation?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  8. src/cmd/covdata/tool_test.go

    	if err := os.Mkdir(moutdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", moutdir, err)
    	}
    
    	// Run a merge over both programs, using the -pcombine
    	// flag to do maximal combining.
    	ins := fmt.Sprintf("-i=%s,%s,%s,%s", s.outdirs[0], s.outdirs[1],
    		runout[0], runout[1])
    	out := fmt.Sprintf("-o=%s", moutdir)
    	margs := []string{"-pcombine", ins, out}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. cluster/log-dump/log-dump.sh

      fi
      all_selected_nodes=( "${linux_nodes_selected_for_logs[@]}" )
      all_selected_nodes+=( "${windows_node_names[@]}" )
    
      proc=${max_dump_processes}
      start="$(date +%s)"
      # log_dump_ssh_timeout is the maximal number of seconds the log dumping over
      # SSH operation can take. Please note that the logic enforcing the timeout
      # is only a best effort. The actual time of the operation may be longer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"maxFailedIndexes":        "Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set. Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated. When left as null the job continues...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top