Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for bandwidth (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

      const CalibrationStatistics& stats = statistics_map.statistics().at("1");
      ASSERT_TRUE(stats.has_histogram_statistics());
      EXPECT_FLOAT_EQ(stats.histogram_statistics().bin_width(), 0.5f);
      EXPECT_FLOAT_EQ(stats.histogram_statistics().lower_bound(), 1.f);
      EXPECT_THAT(stats.histogram_statistics().hist_freq(),
                  ElementsAre(1, 4, 6, 7, 3, 2, 1));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm_test.py

      )
      def test_histogram_calibration_methods(self, calibration_options):
        statistics = calib_stats_pb2.CalibrationStatistics()
        statistics.histogram_statistics.lower_bound = 0.0
        statistics.histogram_statistics.bin_width = 1.0
    
        hist_freq = np.zeros(501, dtype=np.int32)
    
        # Advanced calibration methods that use histograms detect outliers, so they
        # don't use the outliers as min/max values.
        hist_freq[0] = 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/fmt/doc.go

    		Printf("hi", "guys"):      hi%!(EXTRA string=guys)
    	Too few arguments: %!verb(MISSING)
    		Printf("hi%d"):            hi%!d(MISSING)
    	Non-int for width or precision: %!(BADWIDTH) or %!(BADPREC)
    		Printf("%*s", 4.5, "hi"):  %!(BADWIDTH)hi
    		Printf("%.*s", 4.5, "hi"): %!(BADPREC)hi
    	Invalid or invalid use of argument index: %!(BADINDEX)
    		Printf("%*[2]d", 7):       %!d(BADINDEX)
    		Printf("%.[2]d", 7):       %!d(BADINDEX)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    // range (0-65535) for the fields Width and Height.
    func randomTerminalSize() remotecommand.TerminalSize {
    	randWidth := uint16(mrand.Intn(int(math.Pow(2, 16))))
    	randHeight := uint16(mrand.Intn(int(math.Pow(2, 16))))
    	return remotecommand.TerminalSize{
    		Width:  randWidth,
    		Height: randHeight,
    	}
    }
    
    // TestStreamTranslator_MultipleWriteChannels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/typecheck.go

    		if dostrcmp > 1 {
    			// Already in the process of diagnosing an error.
    			return f1
    		}
    		if f2 != nil {
    			base.Errorf("%v is both field and method", n.Sel)
    		}
    		if f1.Offset == types.BADWIDTH {
    			base.Fatalf("Lookdot badwidth t=%v, f1=%v@%p", t, f1, f1)
    		}
    		n.Selection = f1
    		n.SetType(f1.Type)
    		if t.IsInterface() {
    			if n.X.Type().IsPtr() {
    				star := ir.NewStarExpr(base.Pos, n.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. src/fmt/fmt_test.go

    	{"%0*d", args(uint64(4), 42), "0042"},
    	{"%0*d", args('\x04', 42), "0042"},
    	{"%0*d", args(uintptr(4), 42), "0042"},
    
    	// erroneous
    	{"%*d", args(nil, 42), "%!(BADWIDTH)42"},
    	{"%*d", args(int(1e7), 42), "%!(BADWIDTH)42"},
    	{"%*d", args(int(-1e7), 42), "%!(BADWIDTH)42"},
    	{"%.*d", args(nil, 42), "%!(BADPREC)42"},
    	{"%.*d", args(-1, 42), "%!(BADPREC)42"},
    	{"%.*d", args(int(1e7), 42), "%!(BADPREC)42"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    	// the function name node.
    	Nname Object
    
    	// Offset in bytes of this field or method within its enclosing struct
    	// or interface Type. For parameters, this is BADWIDTH.
    	Offset int64
    }
    
    const (
    	fieldIsDDD = 1 << iota // field is ... argument
    	fieldNointerface
    )
    
    func (f *Field) IsDDD() bool       { return f.flags&fieldIsDDD != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    - Kube-apiserver: gzip compression switched from level 4 to level 1 to improve large list call latencies in exchange for higher network bandwidth usage (10-50% higher). This increases the headroom before very large unpaged list calls exceed request timeout limits. ([#112398](https://github.com/kubernetes/kubernetes/pull/112398), [@shyamjvs](https://github.com/shyamjvs)) [SIG API Machinery]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/assign.go

    		if tmp, ok := l.(*ir.Name); !ok || !tmp.AutoTemp() || !types.Identical(tmp.Type(), r.Type) {
    			base.FatalfAt(l.Pos(), "assigning %v to %+v", r.Type, l)
    		}
    
    		res := ir.NewResultExpr(base.Pos, nil, types.BADWIDTH)
    		res.Index = int64(i)
    		res.SetType(r.Type)
    		res.SetTypecheck(1)
    
    		nn.Append(ir.NewAssignStmt(base.Pos, l, res))
    	}
    	return nn
    }
    
    // check assign expression list to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/fmt/print.go

    	mapString         = "map["
    	percentBangString = "%!"
    	missingString     = "(MISSING)"
    	badIndexString    = "(BADINDEX)"
    	panicString       = "(PANIC="
    	extraString       = "%!(EXTRA "
    	badWidthString    = "%!(BADWIDTH)"
    	badPrecString     = "%!(BADPREC)"
    	noVerbString      = "%!(NOVERB)"
    	invReflectString  = "<invalid reflect.Value>"
    )
    
    // State represents the printer state passed to custom formatters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top