Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for narrower (0.16 sec)

  1. pkg/kubelet/cm/topologymanager/policy.go

    		var best bitmask.BitMask
    		if (policyName != PolicySingleNumaNode) && opts.PreferClosestNUMA {
    			best = numaInfo.Closest(current.NUMANodeAffinity, candidate.NUMANodeAffinity)
    		} else {
    			best = numaInfo.Narrowest(current.NUMANodeAffinity, candidate.NUMANodeAffinity)
    		}
    		if best.IsEqual(current.NUMANodeAffinity) {
    			return current
    		}
    		return candidate
    	}
    
    	merger := HintMerger{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    [[sub:terminology_dependency_constraint]]
    == Dependency constraint
    
    A dependency constraint defines requirements that need to be met by a module to make it a valid resolution result for the dependency.
    For example, a dependency constraint can narrow down the set of supported module versions.
    Dependency constraints can be used to express such requirements for transitive dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

          // The initial quantization is used someplace else ... so it might be
          // reasonable for it to requantized for another purpose.
          // Ideally would want to still check whether requantization narrows
          // rather than widens the representation.
          return;
        }
    
        // Invariant:
        // isa<quantfork::QuantizeCastOp>(dq_arg.getDefiningOp()) -->
        // getdq_arg.getType() != q_op.getResult().getType()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

          // The initial quantization is used someplace else ... so it might be
          // reasonable for it to requantized for another purpose.
          // Ideally would want to still check whether requantization narrows
          // rather than widens the representation.
          return;
        }
    
        // Invariant:
        // isa<quantfork::QuantizeCastOp>(dq_arg.getDefiningOp()) -->
        // getdq_arg.getType() != q_op.getResult().getType()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	klog.Infof("Starting cluster_authentication_trust_controller controller")
    	defer klog.Infof("Shutting down cluster_authentication_trust_controller controller")
    
    	// we have a personal informer that is narrowly scoped, start it.
    	go c.kubeSystemConfigMapInformer.Run(ctx.Done())
    
    	// wait for your secondary caches to fill before starting your work
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// If we aren't allowed to build sets of size 2+N, give up this branch.
    	if b.MaxSet > 0 && 2+len(b.Add) > b.MaxSet {
    		return nil
    	}
    
    	// Adding all matches for 1suffix, recurse to narrow down 0suffix.
    	old := len(b.Add)
    	b.Add = append(b.Add, "1"+suffix)
    	r0 = b.Run("0" + suffix)
    	if r0.Success {
    		// 0suffix + b.Add + 1suffix = suffix + b.Add is what r describes, and it failed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

          return absl::InvalidArgumentError(
              "Quantized tensors must be stored as integers");
        }
        storage_type = mlir::cast<mlir::IntegerType>(raw_elem_type);
      }
    
      // TFlite uses narrow-range [u]int8 for constant buffers of quantized weights.
      // Since we don't know which ones are weights, we represent this optimization
      // as a change in the storage bounds for the type for all constants of this
      // type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            javaClassFile("compile/test/Person.class").exists()
            javaClassFile("compile/test/Person2.class").exists()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/5750")
        def "include narrows down source files to compile"() {
            given:
            goodCode()
    
            and:
            file('src/main/java/Bar.java') << 'class Bar {}'
            buildFile << 'compileJava.include "**/Person*.java"'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier.go

    // a default policy set to a PERMISSIVE.
    // If there is at least one applicable config, returns should not be nil, and is a combined policy
    // based on following rules:
    // - It should have the setting from the most narrow scope (i.e workload-level is preferred over
    // namespace-level, which is preferred over mesh-level).
    // - When there are more than one policy in the same scope (i.e workload-level), the oldest one win.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

                 "or tf.relu6 to narrow the tensor range. Range: "
              << range << ", bit width: " << num_bits;
        }
        if (std::abs(max - min) < kNearZeroTolerance) {
          op.emitWarning() << "Tensor range (" << min << ", " << max
                           << ") is too narrow and it might cause overflow. "
                              "Expanding range symmetrically by "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top