Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 84 of 84 for statistics (0.58 sec)

  1. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.cc

          return emitOpError() << "has incompatible specification " << outputSpec
                               << " and output type " << outputType;
        }
      }
      return success();
    }
    
    LogicalResult StatisticsOp::verify() {
      auto tensorArg = mlir::dyn_cast<TensorType>(getArg().getType());
      if (!tensorArg) return emitOpError("arg needs to be tensor type.");
    
      // Verify layerStats attribute.
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/integrator.go

    	fcmetrics.Gauge
    
    	GetResults() IntegratorResults
    
    	// Return the results of integrating to now, and reset integration to start now
    	Reset() IntegratorResults
    }
    
    // IntegratorResults holds statistical abstracts of the integration
    type IntegratorResults struct {
    	Duration  float64 //seconds
    	Average   float64 //time-weighted
    	Deviation float64 //standard deviation: sqrt(avg((value-avg)^2))
    	Min, Max  float64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:37:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. src/net/main_test.go

    		fmt.Fprintf(os.Stderr, "%v: %v\n", s, so)
    	}
    	fmt.Fprintf(os.Stderr, "\n")
    }
    
    func printSocketStats() {
    	sts := sw.Stats()
    	if len(sts) == 0 {
    		return
    	}
    	fmt.Fprintf(os.Stderr, "Socket statistical information:\n")
    	for _, st := range sts {
    		fmt.Fprintf(os.Stderr, "%v\n", st)
    	}
    	fmt.Fprintf(os.Stderr, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/runtime/mpagealloc_64bit.go

    	logPallocChunkPages,
    }
    
    // sysInit performs architecture-dependent initialization of fields
    // in pageAlloc. pageAlloc should be uninitialized except for sysStat
    // if any runtime statistic should be updated.
    func (p *pageAlloc) sysInit(test bool) {
    	// Reserve memory for each level. This will get mapped in
    	// as R/W by setArenas.
    	for l, shift := range levelShift {
    		entries := 1 << (heapAddrBits - shift)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top