Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MMU (0.44 sec)

  1. src/internal/trace/gc.go

    }
    
    // MMU returns the minimum mutator utilization for the given time
    // window. This is the minimum utilization for all windows of this
    // duration across the execution. The returned value is in the range
    // [0, 1].
    func (c *MMUCurve) MMU(window time.Duration) (mmu float64) {
    	acc := accumulator{mmu: 1.0, bound: 1.0}
    	c.mmu(window, &acc)
    	return acc.mmu
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/internal/trace/gc_test.go

    	})
    }
    
    func mmuSlow(util []trace.MutatorUtil, window time.Duration) (mmu float64) {
    	if max := time.Duration(util[len(util)-1].Time - util[0].Time); window > max {
    		window = max
    	}
    
    	mmu = 1.0
    
    	// muInWindow returns the mean mutator utilization between
    	// util[0].Time and end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/cmd/trace/main.go

    	// Goroutines handlers.
    	mux.HandleFunc("/goroutines", GoroutinesHandlerFunc(parsed.summary.Goroutines))
    	mux.HandleFunc("/goroutine", GoroutineHandler(parsed.summary.Goroutines))
    
    	// MMU handler.
    	mux.HandleFunc("/mmu", traceviewer.MMUHandlerFunc(ranges, mutatorUtil))
    
    	// Basic pprof endpoints.
    	mux.HandleFunc("/io", traceviewer.SVGProfileHandlerFunc(pprofByGoroutine(computePprofIO(), parsed)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/asm0.go

    		return OP(1, 1)
    
    	case ABREAK:
    		return OP(1, 5)
    	case ASYSCALL:
    		return OP(1, 4)
    	case ATLBP:
    		return MMU(1, 0)
    	case ATLBR:
    		return MMU(0, 1)
    	case ATLBWI:
    		return MMU(0, 2)
    	case ATLBWR:
    		return MMU(0, 6)
    	case ARFE:
    		return MMU(2, 0)
    
    	case ADIVF:
    		return FPF(0, 3)
    	case ADIVD:
    		return FPD(0, 3)
    	case AMULF:
    		return FPF(0, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
Back to top