Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 441 for computations (0.22 sec)

  1. tensorflow/compiler/jit/xla_tpu_device.cc

        // done().
        // The latter may be too conservative, but given the host is involved in
        // waiting for the transfer to complete anyway there is probably little
        // downside. If we were to add the ability for computations to wait directly
        // on transfers, then we might want to rethink this property.
        // Also ideally this host callback should be on source stream rather than
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            //   ApplyWeightUpdates_2 -> "iteration++"
            //   ApplyWeightUpdates_0 -> Computation_A
            //   ApplyWeightUpdates_1 -> Computation_B
            //   ApplyWeightUpdates_2 -> Computation_C
            //   Computation_A -> NoOp
            //   Computation_B -> NoOp
            //   Computation_C -> NoOp
            //   "iteration++" -> NoOp
            // }
            //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    	fieldCache.RLock()
    	f := fieldCache.m[t]
    	fieldCache.RUnlock()
    	if f != nil {
    		return f
    	}
    
    	// Compute fields without lock.
    	// Might duplicate effort but won't hold other computations back.
    	f = typeFields(t)
    	if f == nil {
    		f = []field{}
    	}
    
    	fieldCache.Lock()
    	if fieldCache.m == nil {
    		fieldCache.m = map[reflect.Type][]field{}
    	}
    	fieldCache.m[t] = f
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  4. src/strconv/ftoa.go

    			ok = true
    		}
    	}
    	if !ok {
    		return bigFtoa(dst, prec, fmt, neg, mant, exp, flt)
    	}
    	return formatDigits(dst, shortest, neg, digs, prec, fmt)
    }
    
    // bigFtoa uses multiprecision computations to format a float.
    func bigFtoa(dst []byte, prec int, fmt byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
    	d := new(decimal)
    	d.Assign(mant)
    	d.Shift(exp - int(flt.mantbits))
    	var digs decimalSlice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradient_checker.cc

    // between theoretical and numerical jacobians:
    //   fabs(jac_t - jac_n) / max(fabs(jac_t), fabs(jac_n))
    
    // TODO(andydavis) Vectorize and/or multi-thread Jacobian computations if
    // performance becomes an issue.
    
    // BaseUnitsForType provides a list of typed unit values for each basis in the
    // requested type.
    // When T is real,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. tensorflow/c/eager/tape.h

      // `forward_function` is null, a GradientTape is used on the backward function
      // to compute the jvp, which will waste computation when executing eagerly.
      //
      // Unlike GradientTape::RecordOperation, Accumulate runs gradient computation
      // immediately. It stores the results, which feed into Accumulate for future
      // operations and may be fetched by calling FetchJVP. ForwardAccumulator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    output.
    ### `-tf-tpu-host-computation-expansion`
    
    _Expands host computation before and after TPU computation._
    
    This pass expands outside compilation attributes to Identity/Cast ops
    at the head of TPU computation if it's only used by outside compiled ops.
    ### `-tf-tpu-identity-pruning`
    
    _Removes Identity/IdentityN ops from the TPU computation_
    
    ### `-tf-tpu-merge-variables-with-execute`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    	// If a pod doesn't have any volume attached to it, the predicate will always be true.
    	// Thus we make a fast path for it, to avoid unnecessary computations in this case.
    	if len(pod.Spec.Volumes) == 0 {
    		return nil
    	}
    
    	logger := klog.FromContext(ctx)
    	newVolumes := sets.New[string]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cfg/cfg.go

    	GOROOTpkg string
    	GOROOTsrc string
    
    	GOBIN                         = Getenv("GOBIN")
    	GOMODCACHE, GOMODCACHEChanged = EnvOrAndChanged("GOMODCACHE", gopathDir("pkg/mod"))
    
    	// Used in envcmd.MkEnv and build ID computations.
    	GOARM64, goARM64Changed     = EnvOrAndChanged("GOARM64", fmt.Sprint(buildcfg.GOARM64))
    	GOARM, goARMChanged         = EnvOrAndChanged("GOARM", fmt.Sprint(buildcfg.GOARM))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads.go

    	atomic.StoreInt64(&connectionNumber, 0)
    }
    
    // initProxyMetadata initializes just the basic metadata of a proxy. This is decoupled from
    // initProxyState such that we can perform authorization before attempting expensive computations to
    // fully initialize the proxy.
    func (s *DiscoveryServer) initProxyMetadata(node *core.Node) (*model.Proxy, error) {
    	meta, err := model.ParseMetadata(node.Metadata)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top