Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for NP (0.07 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset_test.py

      @test_util.deprecated_graph_mode_only
      def test_replace_tensors_by_numpy_ndarrays_is_noop_when_no_tensor(self):
        # Fill the representative dataset with np.ndarrays only.
        repr_ds: repr_dataset.RepresentativeDataset = [
            {
                'input_tensor': np.random.uniform(low=-1.0, high=1.0, size=(4, 3)),
            }
            for _ in range(8)
        ]
    
        with self.session() as sess:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 07:35:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            self.filters = np.stack(
                [
                    np.random.uniform(
                        low=-(i + 1), high=(i + 1), size=filter_shape[:-1]
                    ).astype('f4')
                    for i in range(self.out_channel_size)
                ],
                axis=-1,
            )
    
            self.bias = np.random.uniform(
                low=0, high=10, size=(self.out_channel_size)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        first_mid = self._lower_bound + self._bin_width / 2
        last_mid = first_mid + (self._num_bins - 1) * self._bin_width
        self._hist_mids = np.linspace(first_mid, last_mid, self._num_bins)
    
      def _get_dequantized_hist_mids_after_quantize(
          self, quant_min: float, quant_max: float
      ) -> np.ndarray:
        """Quantizes and dequantizes hist_mids using quant_min and quant_max.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/typecheck.go

    	// observable side effects, and keeping it in place allows better escape analysis.
    	if !ir.Any(*np, func(n ir.Node) bool { return n.Op() != ir.ONEW && callOrChan(n) }) {
    		return
    	}
    
    	tmp := TempAt(base.Pos, ir.CurFunc, (*np).Type())
    	as := ir.NewAssignStmt(base.Pos, tmp, *np)
    	as.PtrInit().Append(Stmt(ir.NewDecl(n.Pos(), ir.ODCL, tmp)))
    	*np = tmp
    
    	n.PtrInit().Append(Stmt(as))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/image/png/reader.go

    	return d.verifyChecksum()
    }
    
    func (d *decoder) parsePLTE(length uint32) error {
    	np := int(length / 3) // The number of palette entries.
    	if length%3 != 0 || np <= 0 || np > 256 || np > 1<<uint(d.depth) {
    		return FormatError("bad PLTE length")
    	}
    	n, err := io.ReadFull(d.r, d.tmp[:3*np])
    	if err != nil {
    		return err
    	}
    	d.crc.Write(d.tmp[:n])
    	switch d.cb {
    	case cbP1, cbP2, cbP4, cbP8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

    """Defines types required for representative datasets for quantization."""
    
    from collections.abc import Collection, Sized
    import os
    from typing import Iterable, Mapping, Optional, Union
    
    import numpy as np
    
    from tensorflow.compiler.mlir.quantization.tensorflow import quantization_options_pb2
    from tensorflow.core.protobuf import meta_graph_pb2
    from tensorflow.python.client import session
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. src/database/sql/convert.go

    	// argument list.
    	var err error
    	var n int
    	for _, arg := range args {
    		nv := &nvargs[n]
    		if np, ok := arg.(NamedArg); ok {
    			if err = validateNamedValueName(np.Name); err != nil {
    				return nil, err
    			}
    			arg = np.Value
    			nv.Name = np.Name
    		}
    		nv.Ordinal = n + 1
    		nv.Value = arg
    
    		// Checking sequence has four routes:
    		// A: 1. Default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	if len(meta) > maxMetaLen {
    		return nil, fmt.Errorf("counter: metadata too large")
    	}
    	np := round(len(hdrPrefix), 4)
    	n := round(np+4+len(meta), 32)
    	hdr := make([]byte, n)
    	copy(hdr, hdrPrefix)
    	*(*uint32)(unsafe.Pointer(&hdr[np])) = uint32(n)
    	copy(hdr[np+4:], meta)
    	return hdr, nil
    }
    
    func (m *mappedFile) place(limit uint32, name string) (start, end uint32) {
    	if limit == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/alloc.go

    			// looking for any user provided values.
    			np := findRequestedNodePort(int(servicePort.Port), service.Spec.Ports)
    			if np != 0 {
    				err := nodePortOp.Allocate(np)
    				if err != nil {
    					// TODO: when validation becomes versioned, this gets more complicated.
    					el := field.ErrorList{field.Invalid(field.NewPath("spec", "ports").Index(i).Child("nodePort"), np, err.Error())}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  10. src/cmd/covdata/dump.go

    	// package/function combinations. This will help catch bugs in the
    	// counter file reader.
    	d.pkm = make(map[uint32]uint32)
    	np := uint32(mfr.NumPackages())
    	payload := []byte{}
    	for pkIdx := uint32(0); pkIdx < np; pkIdx++ {
    		var pd *decodemeta.CoverageMetaDataDecoder
    		var err error
    		pd, payload, err = mfr.GetPackageDecoder(pkIdx, payload)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top