Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Bridge (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

      (TF_ResourceApplyFtrlV2Op $var, $accum, $linear, $grad, $lr, $l1, $l2,
         (TF_ConstOp (GetScalarOfType<0> $lr_power)), $lr_power, $use_locking, $multiply_linear_by_lr)>;
    
    // TODO(kramm): Remove use_locking. The old bridge doesn't use this, either.
    def DecomposeResourceApplyFtrlV2: Pattern<
      (TF_ResourceApplyFtrlV2Op:$src_op $var, $accum, $linear, $grad, $lr, $l1, $l2,
         $l2_shrinkage, $lr_power, $use_locking, $multiply_linear_by_lr),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            if (ruleMethod.getTypeParameters().length > 0) {
                problems.add(ruleMethod, "Cannot have type variables (i.e. cannot be a generic method)");
            }
    
            // TODO validations on method: synthetic, bridge methods, varargs, abstract, native
            ModelType<?> returnType = ModelType.returnType(ruleMethod);
            if (returnType.isRawClassOfParameterizedType()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

      for (const auto& device : devices.device_names()) {
        if (device.has_type && device.type == "CPU" && device.id == 0) {
          if (!host_device->empty()) {
            // TODO(hanxiongwang): Remove this warning when TF API to bridge
            // interface is understood.
            LOG(WARNING) << "Found multiple CPU:0 host devices";
            if (device.job == "chief")
              *host_device =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // type` with `tf.XlaLaunch` ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaRewritePass();
    
    // Create a pass that validates the input graph to the CPU/GPU bridge.
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaValidateInputsPass();
    }  // namespace TFDevice
    
    namespace TFTPU {
    // Creates a pass that converts unified compilation and replication
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. src/crypto/x509/verify.go

    // Rather than doing a direct byte for byte equivalency check, we check if the
    // subject, public key, and SAN, if present, are equal. This prevents loops that
    // are created by mutual cross-signatures, or other cross-signature bridge
    // oddities.
    func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {
    	type pubKeyEqual interface {
    		Equal(crypto.PublicKey) bool
    	}
    
    	var candidateSAN *pkix.Extension
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/preflight/checks.go

    			IPV6Check = true
    		}
    	}
    
    	if !isSecondaryControlPlane {
    		checks = addCommonChecks(execer, cfg.KubernetesVersion, &cfg.NodeRegistration, checks)
    
    		// Check if Bridge-netfilter and IPv6 relevant flags are set
    		if ip := netutils.ParseIPSloppy(cfg.LocalAPIEndpoint.AdvertiseAddress); ip != nil {
    			if !IPV4Check && netutils.IsIPv4(ip) {
    				IPV4Check = true
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProvider.java

        }
    
        public BuildableModuleComponentMetaDataResolveResult<?> getResult() {
            return cachedResult;
        }
    
        /**
         * This class bridges from the public type available in metadata suppliers ({@link ComponentMetadataBuilder}
         * to the complete type ({@link ComponentMetadata}) which provides more than what we want to expose in those
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/encoding/base32/base32.go

    	nbuf int        // number of bytes in buf
    	out  [1024]byte // output buffer
    }
    
    func (e *encoder) Write(p []byte) (n int, err error) {
    	if e.err != nil {
    		return 0, e.err
    	}
    
    	// Leading fringe.
    	if e.nbuf > 0 {
    		var i int
    		for i = 0; i < len(p) && e.nbuf < 5; i++ {
    			e.buf[e.nbuf] = p[i]
    			e.nbuf++
    		}
    		n += i
    		p = p[i:]
    		if e.nbuf < 5 {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. src/cmd/link/link_test.go

    wheezing by the firesides of their wards; fog in the stem and bowl of the afternoon pipe of the wrathful skipper, down in his close cabin; fog cruelly pinching the toes and fingers of his shivering little ‘prentice boy on deck. Chance people on the bridges peeping over the parapets into a nether sky of fog, with fog all round them, as if they were up in a balloon and hanging in the misty clouds.  	Gas looming through the fog in divers places in the streets, much as the sun may, from the spongey fields,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top