Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for w_scale (0.07 sec)

  1. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

            if (op->hasOneUse() &&
                op->user_begin()->hasTrait<OpTrait::IsTerminator>())
              return failure();
          }
          // If the quantize op is a requantize op, it is being used in other scale
          // adjustments and should be kept. Instead, moving dequantize op before
          // the requantize op to remove the unnecessary requantize op.
          if (auto qtype = quant::QuantizedType::getQuantizedElementType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults.go

    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_ResourceList(obj *v1.ResourceList) {
    	for key, val := range *obj {
    		// TODO(#18538): We round up resource values to milli scale to maintain API compatibility.
    		// In the future, we should instead reject values that need rounding.
    		const milliScale = -3
    		val.RoundUp(milliScale)
    
    		(*obj)[v1.ResourceName(key)] = val
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. src/os/signal/signal_test.go

    		// observed when running 10000 tests on such a system.
    		settleTime = 5 * time.Second
    	} else if s := os.Getenv("GO_TEST_TIMEOUT_SCALE"); s != "" {
    		if scale, err := strconv.Atoi(s); err == nil {
    			settleTime *= time.Duration(scale)
    		}
    	}
    }
    
    func waitSig(t *testing.T, c <-chan os.Signal, sig os.Signal) {
    	t.Helper()
    	waitSig1(t, c, sig, false)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  4. pkg/controller/deployment/util/deployment_util_test.go

    		depReplicas   int32
    		newRSReplicas int32
    		maxSurge      int32
    		expected      int32
    	}{
    		{
    			"can not scale up - to newRSReplicas",
    			apps.RollingUpdateDeploymentStrategyType,
    			1, 5, 1, 5,
    		},
    		{
    			"scale up - to depReplicas",
    			apps.RollingUpdateDeploymentStrategyType,
    			6, 2, 10, 6,
    		},
    		{
    			"recreate - to depReplicas",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    //
    // It uses a brute-force recursive approach to enumerate all objects
    // defined by dependencies of pkg, so that it can learn the set of
    // package paths that may be mentioned in the fact encoding. This does
    // not scale well; use [NewDecoderFunc] where possible.
    func NewDecoder(pkg *types.Package) *Decoder {
    	// Compute the import map for this package.
    	// See the package doc comment.
    	m := importMap(pkg.Imports())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go

    	SYS_GETEGID        = 43  // { gid_t sys_getegid(void); }
    	SYS_PROFIL         = 44  // { int sys_profil(caddr_t samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE         = 45  // { int sys_ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_SIGACTION      = 46  // { int sys_sigaction(int signum, const struct sigaction *nsa, struct sigaction *osa); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_PIPE                 = 42  // { int|sys||pipe(void); }
    	SYS_GETEGID              = 43  // { gid_t|sys||getegid(void); }
    	SYS_PROFIL               = 44  // { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE               = 45  // { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_GETGID               = 47  // { gid_t|sys||getgid_with_egid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_PIPE                 = 42  // { int|sys||pipe(void); }
    	SYS_GETEGID              = 43  // { gid_t|sys||getegid(void); }
    	SYS_PROFIL               = 44  // { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE               = 45  // { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_GETGID               = 47  // { gid_t|sys||getgid_with_egid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/asm.go

    func (p *Parser) validSymbol(pseudo string, addr *obj.Addr, offsetOk bool) bool {
    	if addr.Sym == nil || addr.Name != obj.NAME_EXTERN && addr.Name != obj.NAME_STATIC || addr.Scale != 0 || addr.Reg != 0 {
    		p.errorf("%s symbol %q must be a symbol(SB)", pseudo, symbolName(addr))
    		return false
    	}
    	if !offsetOk && addr.Offset != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

              },
              "group": {
                "description": "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
                "type": "string"
              },
              "kind": {
                "default": "",
                "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
Back to top