Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 206 for computations (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

            [](Operation* user) { return isa<TF::AssignVariableOp>(user); });
    
        // TODO(b/186717563): Eliminate all pass through results once XLA correctly
        // handles empty computations. Another approach could be to drop empty
        // clusters within MLIR but that seems to trigger other failures but can be
        // considered again.
        // Old bridge only removes unsupported TPU types (only string for now)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema.fbs

      // Internal tensors are those that do not flow in or out of the operation,
      // but instead are part of internal computation. As such, the operation's
      // implementation may manage its memory more efficiently. They are needed
      // however (i.e. not just an implementation detail) since they are part of the
      // computation, which may require relevant metadata such as quantization
      // parameters.
      intermediates:[int];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    //
    // (Note that this can be viewed equivalently as:
    //
    //	actionID(binary)/buildID(main.a)/contentID(binary)
    //
    // Storing the buildID(main.a) in the middle lets the computations that care
    // about the prefix or suffix halves ignore the middle and preserves the
    // original build ID as a contiguous string.)
    //
    // During the build, when it's time to build main.a, the gofmt binary has the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/core.go

    	// effect, the scan skips the first and last value.
    	//
    	// Although the scan proceeds left to right, and changes the type
    	// values in a way that would appear to affect the computations
    	// later in the scan, there is actually no problem. A change in the
    	// current value can only affect the value to its immediate right,
    	// and only affect it if it is ES or CS. But the current value can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  9. src/runtime/os_windows.go

    	physPageSize = getPageSize()
    
    	// Windows dynamic priority boosting assumes that a process has different types
    	// of dedicated threads -- GUI, IO, computational, etc. Go processes use
    	// equivalent threads that all do a mix of GUI, IO, computations, etc.
    	// In such context dynamic priority boosting does nothing but harm, so we turn it off.
    	stdcall2(_SetProcessPriorityBoost, currentProcess, 1)
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. src/go/constant/value.go

    			if _, acc := x.val.Int(i); acc == big.Exact {
    				return makeInt(i)
    			}
    
    			// If we can get an integer by rounding up or down,
    			// assume x is not an integer because of rounding
    			// errors in prior computations.
    
    			const delta = 4 // a small number of bits > 0
    			var t big.Float
    			t.SetPrec(prec - delta)
    
    			// try rounding down a little
    			t.SetMode(big.ToZero)
    			t.Set(x.val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
Back to top