Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Off (0.12 sec)

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

    	// result: (MOVBstore [off] {sym} ptr x mem)
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		if v_1.Op != OpARM64MOVWreg {
    			break
    		}
    		x := v_1.Args[0]
    		mem := v_2
    		v.reset(OpARM64MOVBstore)
    		v.AuxInt = int32ToAuxInt(off)
    		v.Aux = symToAux(sym)
    		v.AddArg3(ptr, x, mem)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    		sb := v_0_0.Args[0]
    		if !(t.IsUintptr() && isFixedSym(s, off)) {
    			break
    		}
    		v.reset(OpAddr)
    		v.Aux = symToAux(fixedSym(b.Func, s, off))
    		v.AddArg(sb)
    		return true
    	}
    	// match: (Load <t> (OffPtr [off] (Convert (Addr {s} sb) _) ) _)
    	// cond: t.IsUintptr() && isFixedSym(s, off)
    	// result: (Addr {fixedSym(b.Func, s, off)} sb)
    	for {
    		t := v.Type
    		if v_0.Op != OpOffPtr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. RELEASE.md

                from when they are off due to floating-point round-off errors from
                different computation approaches and orders.
            *   To verify that the optimizations are on, look for a message with
                "*oneDNN custom operations are on*" in the log. If the exact phrase
                is not there, it means they are off.
    
    ## Bug Fixes and Other Changes
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    		},
    		"vac-nothing-changed-when-feature-gate-is-off": {
    			isExpectedFailure:           false,
    			enableVolumeAttributesClass: false,
    			oldPV:                       testVolumeWithVolumeAttributesClass(ptr.To("foo")),
    			newPV:                       testVolumeWithVolumeAttributesClass(ptr.To("foo")),
    		},
    		"vac-changed-when-feature-gate-is-off": {
    			isExpectedFailure:           true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let description = [{
    For example:
    
    >>> x = [2, 2, 7]
    >>> y = [2, 3, 7]
    >>> z = [2, 9, 7]
    >>> offsets = concat_offset(1, [x, y, z])
    >>> [list(off.numpy()) for off in offsets]
    [[0, 0, 0], [0, 2, 0], [0, 5, 0]]
    
    This is typically used by gradient computations for a concat operation.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top