Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for storeVcs (0.31 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        op.erase();
      }
    }
    
    // Performs store-load forwarding. This effectively removes
    // 1) Any resource loads after a store to that same resource is done
    // 2) Any resource stores except the last one.
    // TODO(ycao): Store-load forwarding implemented here is only correct when
    // computation is purely sequential (no concurrency). Need to support concurrent
    // computation as well.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Indexed ops generate indexed load or store instructions for all GOPPC64 values.
    // Non-indexed ops generate DS-form loads and stores when the offset fits in 16 bits,
    // and on power8 and power9, a multiple of 4 is required for MOVW and MOVD ops.
    // On power10, prefixed loads and stores can be used for offsets > 16 bits and <= 32 bits.
    // and support for PC relative addressing must be available if relocation is needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	dynimplib   map[Sym]string      // stores Dynimplib symbol attribute
    	dynimpvers  map[Sym]string      // stores Dynimpvers symbol attribute
    	localentry  map[Sym]uint8       // stores Localentry symbol attribute
    	extname     map[Sym]string      // stores Extname symbol attribute
    	elfType     map[Sym]elf.SymType // stores elf type symbol property
    	elfSym      map[Sym]int32       // stores elf sym symbol property
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    			// alignment with small iteration
    			// counts.
    			if ctr > 3 {
    				p = s.Prog(obj.APCALIGN)
    				p.From.Type = obj.TYPE_CONST
    				p.From.Offset = 16
    			}
    
    			// Generate 16 byte loads and stores.
    			// Use temp register for index (16)
    			// on the second one.
    
    			p = s.Prog(ppc64.ALXVD2X)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Index = ppc64.REGZERO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (MOVBstoreconst [sc] {s} (ADDconst [off] ptr) mem) && is20Bit(sc.Off64()+int64(off)) =>
    	(MOVBstoreconst [sc.addOffset32(off)] {s} ptr mem)
    
    // Merge address calculations into loads and stores.
    // Offsets from SB must not be merged into unaligned memory accesses because
    // loads/stores using PC-relative addressing directly must be aligned to the
    // size of the target.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    	// AuthzPolicies stores the existing authorization policies in the cluster. Could be nil if there
    	// are no authorization policies in the cluster.
    	AuthzPolicies *AuthorizationPolicies `json:"-"`
    
    	// Telemetry stores the existing Telemetry resources for the cluster.
    	Telemetry *Telemetries `json:"-"`
    
    	// ProxyConfig stores the existing ProxyConfig resources for the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "MOVDatomicload", argLength: 2, reg: gpload, asm: "MOVD", aux: "SymOff", faultOnNilArg0: true, symEffect: "Read"},
    
    		// Atomic stores. These are just normal stores.
    		// store arg1 to arg0+auxint+aux. arg2=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (AtomicLoad64 ptr mem) => (MOVQatomicload ptr mem)
    (AtomicLoadPtr ptr mem) => (MOVQatomicload ptr mem)
    
    // Atomic stores.  We use XCHG to prevent the hardware reordering a subsequent load.
    // TODO: most runtime uses of atomic stores don't need that property.  Use normal stores for those?
    (AtomicStore8 ptr val mem) => (Select1 (XCHGB <types.NewTuple(typ.UInt8,types.TypeMem)> val ptr 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/runtime/asm_amd64.s

    	CALL	runtime·abort(SB)	// crash if newstack returns
    	RET
    
    // morestack but not preserving ctxt.
    TEXT runtime·morestack_noctxt(SB),NOSPLIT,$0
    	MOVL	$0, DX
    	JMP	runtime·morestack(SB)
    
    // spillArgs stores return values from registers to a *internal/abi.RegArgs in R12.
    TEXT ·spillArgs(SB),NOSPLIT,$0-0
    	MOVQ AX, 0(R12)
    	MOVQ BX, 8(R12)
    	MOVQ CX, 16(R12)
    	MOVQ DI, 24(R12)
    	MOVQ SI, 32(R12)
    	MOVQ R8, 40(R12)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // GetDeleteStrategy implements GenericStore.
    func (e *Store) GetDeleteStrategy() rest.RESTDeleteStrategy {
    	return e.DeleteStrategy
    }
    
    // List returns a list of items matching labels and field according to the
    // store's PredicateFunc.
    func (e *Store) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
    	label := labels.Everything()
    	if options != nil && options.LabelSelector != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top