Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for movbeq (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

          // entries in the map, causing the underlying storage to be moved. This
          // would also include this pertially constructed object that we have just
          // inserted into the map and are constructing it. To avoid this issue,
          // construct the analysis object separately and then insert it into the
          // map.
          InfoT info(region, *this);
          info_map_.insert({&region, std::move(info)});
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

      // Explicitly override attribute to propagate constants to the functions
      // before compiling to XLA. This is necessary along with conversion to
      // functional format because inlined regions may have moved loop invariant ops
      // outside of the region which may cause some new legalization failures.
      // TODO(b/126739593): Enable this attribute in TensorFlow by default. Also,
      // see b/185542519 for the context.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption.go

    	// Lower priority pods nominated to run on this node, may no longer fit on
    	// this node. So, we should remove their nomination. Removing their
    	// nomination updates these pods and moves them to the active queue. It
    	// lets scheduler find another place for them.
    	nominatedPods := getLowerPriorityNominatedPods(logger, fh, pod, c.Name())
    	if err := util.ClearNominatedNodeName(ctx, cs, nominatedPods...); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    		// the hash used for the identity should include both the hostname and the identity value.
    		// TODO: receive the identity value as a parameter once the apiserver identity lease controller
    		// post start hook is moved to generic apiserver.
    		b := cryptobyte.NewBuilder(nil)
    		b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
    			b.AddBytes([]byte(hostname))
    		})
    		b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// Normally we require that the source and destination of Move do not overlap.
    	// There is an exception when we know all the loads will happen before all
    	// the stores. In that case, overlap is ok. See
    	// memmove inlining in generic.rules. When inlineablememmovesize (in ../rewrite.go)
    	// returns true, we must do all loads before all stores, when lowering Move.
    	// The type of Move is used for the write barrier pass to insert write barriers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top