Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Summarize (4.24 sec)

  1. src/cmd/trace/tasks.go

    func UserTasksHandlerFunc(t *parsedTrace) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    		tasks := t.summary.Tasks
    
    		// Summarize groups of tasks with the same name.
    		summary := make(map[string]taskStats)
    		for _, task := range tasks {
    			stats, ok := summary[task.Name]
    			if !ok {
    				stats.Type = task.Name
    			}
    			stats.add(task)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/runtime/mpallocbits.go

    //
    // The precise representation is an implementation detail, but for the
    // sake of documentation, 0s are free pages and 1s are allocated pages.
    type pallocBits pageBits
    
    // summarize returns a packed summary of the bitmap in pallocBits.
    func (b *pallocBits) summarize() pallocSum {
    	var start, most, cur uint
    	const notSetYet = ^uint(0) // sentinel for start value
    	start = notSetYet
    	for i := 0; i < len(b); i++ {
    		x := b[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api.cc

        return methods_.summarize != nullptr;
      }
    
      Status SummarizeValue(std::string& summary) const override {
        if (methods_.summarize == nullptr) {
          return tensorflow::CustomDeviceTensorHandle::SummarizeValue(summary);
        }
        TF_Status c_status;
        std::unique_ptr<TF_Buffer, decltype(&TF_DeleteBuffer)> summary_buffer(
            methods_.summarize(data_, &c_status), TF_DeleteBuffer);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/mlrt/tpu_conversions.mlir

      %3 = "tf.StringFormat"(%2) {__op_key = 1: i32, device = "/job:localhost/replica:0/task:0/device:CPU:0", placeholder = "{}", strtemplate = "%s", summarize = 3 : i64, template = "Outside compiled {}"} : (tensor<i32>) -> tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. src/runtime/mpagealloc.go

    		y := p.chunkOf(sc).summarize()
    		if x == y {
    			return
    		}
    		p.summary[len(p.summary)-1][sc] = y
    	} else if contig {
    		// Slow contiguous path: the allocation spans more than one chunk
    		// and at least one summary is guaranteed to change.
    		summary := p.summary[len(p.summary)-1]
    
    		// Update the summary for chunk sc.
    		summary[sc] = p.chunkOf(sc).summarize()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    val currentFingerprint = host.fingerprintOf(fileSystemInputs)
                    if (currentFingerprint != fileSystemInputsFingerprint) {
                        // TODO: summarize what has changed (see https://github.com/gradle/configuration-cache/issues/282)
                        return "an input to $workDisplayName has changed"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/cmd/trace/regions.go

    )
    
    // UserRegionsHandlerFunc returns a HandlerFunc that reports all regions found in the trace.
    func UserRegionsHandlerFunc(t *parsedTrace) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    		// Summarize all the regions.
    		summary := make(map[regionFingerprint]regionStats)
    		for _, g := range t.summary.Goroutines {
    			for _, r := range g.Regions {
    				id := fingerprintRegion(r)
    				stats, ok := summary[id]
    				if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/runtime/export_test.go

    func (b *PallocBits) Free(i, n uint)             { (*pallocBits)(b).free(i, n) }
    func (b *PallocBits) Summarize() PallocSum       { return PallocSum((*pallocBits)(b).summarize()) }
    func (b *PallocBits) PopcntRange(i, n uint) uint { return (*pageBits)(b).popcntRange(i, n) }
    
    // SummarizeSlow is a slow but more obviously correct implementation
    // of (*pallocBits).summarize. Used for testing.
    func SummarizeSlow(b *PallocBits) PallocSum {
    	var start, most, end uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/outside_compilation.mlir

          %control_28 = tf_executor.island wraps "tf.Assert"(%outputs_26, %outputs_2, %outputs_4, %outputs_6, %outputs_22) {device = "/device:CPU:0", summarize = 3 : i64} : (tensor<*xi1>, tensor<!tf_type.string>, tensor<!tf_type.string>, tensor<!tf_type.string>, tensor<i32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:19:45 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    Since included builds can be located anywhere on disk, their build path is determined by the name of the containing directory.
    This can sometimes lead to conflicts.
    
    To summarize, the included builds must fulfill these requirements:
    
    * Each included build must have a unique build path.
    * Each included build path must not conflict with any project path of the main build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top