Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for toves (0.05 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    			offset += size
    		}
    
    	case ssa.OpPPC64LoweredMove, ssa.OpPPC64LoweredMoveShort:
    
    		bytesPerLoop := int64(32)
    		// This will be used when moving more
    		// than 8 bytes.  Moves start with
    		// as many 8 byte moves as possible, then
    		// 4, 2, or 1 byte(s) as remaining.  This will
    		// work and be efficient for power8 or later.
    		// If there are 64 or more bytes, then a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    // makes it easy to use those data structures as a SchedulingQueue.
    type SchedulingQueue interface {
    	framework.PodNominator
    	Add(logger klog.Logger, pod *v1.Pod) error
    	// Activate moves the given pods to activeQ iff they're in unschedulablePods or backoffQ.
    	// The passed-in pods are originally compiled from plugins that want to activate Pods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

        }) { is_stateless = false } : (tensor<i1>) -> (tensor<f32>)
        tf_device.return
      }) {cluster_attr = "cluster_attr"} : () -> ()
      func.return
    }
    
    // Check that the algorithm that moves ops to after the merged IfRegion is
    // reasonably efficient.
    
    // CHECK-LABEL: func @moved_ops_with_many_dependencies
    func.func @moved_ops_with_many_dependencies() {
      // CHECK:      tf_device.cluster
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Store {t} ptr val mem) && t.Size() == 4 && !t.IsFloat() => (MOVWstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 2 => (MOVHstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 1 => (MOVBstore ptr val mem)
    
    // Lowering moves
    
    // Load and store for small copies.
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBZload src mem) mem)
    (Move [2] dst src mem) => (MOVHstore dst (MOVHZload src mem) mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    // it using a greedy register allocator. Then all merge edges
    // (those targeting a block with len(Preds)>1) are processed to
    // shuffle data into the place that the target of the edge expects.
    //
    // The greedy allocator moves values into registers just before they
    // are used, spills registers only when necessary, and spills the
    // value whose next use is farthest in the future.
    //
    // The register allocator requires that a block is not scheduled until
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    // complete. While a goroutine's stack is being captured, its
    // goroutineProfileState will be "InProgress" and it will not be able to run
    // until the capture completes and the state moves to "Satisfied".
    //
    // Some goroutines (the finalizer goroutine, which at various times can be
    // either a "system" or a "user" goroutine, and the goroutine that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    		arenaHints *arenaHint
    
    		// quarantineList is a list of user arena spans that have been set to fault, but
    		// are waiting for all pointers into them to go away. Sweeping handles
    		// identifying when this is true, and moves the span to the ready list.
    		quarantineList mSpanList
    
    		// readyList is a list of empty user arena spans that are ready for reuse.
    		readyList mSpanList
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Store {t} ptr val mem) && t.Size() == 4 && !t.IsFloat() => (MOVLstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 2 => (MOVWstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 1 => (MOVBstore ptr val mem)
    
    // Lowering moves
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBload src mem) mem)
    (Move [2] dst src mem) => (MOVWstore dst (MOVWload src mem) mem)
    (Move [4] dst src mem) => (MOVLstore dst (MOVLload src mem) mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Zero [s] ptr mem) && s < 128 && buildcfg.GOPPC64 >= 9 => (LoweredQuadZeroShort [s] ptr mem)
    (Zero [s] ptr mem) && buildcfg.GOPPC64 >= 9 => (LoweredQuadZero [s] ptr mem)
    
    // moves
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBZload src mem) mem)
    (Move [2] dst src mem) =>
            (MOVHstore dst (MOVHZload src mem) mem)
    (Move [4] dst src mem) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    func opToAuxInt(o Op) int64 {
    	return int64(o)
    }
    
    // Aux is an interface to hold miscellaneous data in Blocks and Values.
    type Aux interface {
    	CanBeAnSSAAux()
    }
    
    // for now only used to mark moves that need to avoid clobbering flags
    type auxMark bool
    
    func (auxMark) CanBeAnSSAAux() {}
    
    var AuxMark auxMark
    
    // stringAux wraps string values for use in Aux.
    type stringAux string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top