Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for olhr (0.07 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    	return c.olhr(int32(i), b, r, sc) ^ (1<<22 | 1<<20)
    }
    
    func (c *ctxt5) olrr(i int, b int, r int, sc int) uint32 {
    	return c.olr(int32(i), b, r, sc) ^ (1 << 25)
    }
    
    func (c *ctxt5) olhrr(i int, b int, r int, sc int) uint32 {
    	return c.olhr(int32(i), b, r, sc) ^ (1 << 22)
    }
    
    func (c *ctxt5) ofsr(a obj.As, r int, v int32, b int, sc int, p *obj.Prog) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    			r = reverseBits[r]
    		}
    
    		p := pair{v, w, d}
    		oldR, ok := ft.facts[p]
    		if !ok {
    			if v == w {
    				oldR = eq
    			} else {
    				oldR = lt | eq | gt
    			}
    		}
    		// No changes compared to information already in facts table.
    		if oldR == r {
    			return
    		}
    		ft.stack = append(ft.stack, fact{p, oldR})
    		ft.facts[p] = oldR & r
    		// If this relation is not satisfiable, mark it and exit right away
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    			l.objSyms[oldi] = objSym{r.objidx, li}
    		}
    		return oldi
    	}
    	oldr, oldli := l.toLocal(oldi)
    	oldsym := oldr.Sym(oldli)
    	if oldsym.Dupok() {
    		return oldi
    	}
    	overwrite := r.DataSize(li) != 0
    	if overwrite {
    		// new symbol overwrites old symbol.
    		oldtyp := sym.AbiSymKindToSymKind[objabi.SymKind(oldsym.Type())]
    		if !(oldtyp.IsData() && oldr.DataSize(oldli) == 0) {
    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. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

          (SameElementType $input1, $input2)]>;
    
      // Move binary op batched RHS before reshape:
      // binary(reshape(lhs), rhs) => reshape(binary(lhs, flatten(rhs)))
      // Pattern targetted here is as follows-
      // [input, lhr, rhs] == [<1x1024x128>, <1x1024x8x16>, <1x1x8x16xf32>]
      // This is valid only when the-
      // 1.last dimension of lhs is equal to the number of elements in constant rhs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top