Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for minpc (0.5 sec)

  1. src/runtime/plugin.go

    	}
    	return md.pluginpath, syms, md.inittasks, ""
    }
    
    func pluginftabverify(md *moduledata) {
    	badtable := false
    	for i := 0; i < len(md.ftab); i++ {
    		entry := md.textAddr(md.ftab[i].entryoff)
    		if md.minpc <= entry && entry <= md.maxpc {
    			continue
    		}
    
    		f := funcInfo{(*_func)(unsafe.Pointer(&md.pclntable[md.ftab[i].funcoff])), md}
    		name := funcname(f)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    		}
    	}
    
    	min := datap.textAddr(datap.ftab[0].entryoff)
    	max := datap.textAddr(datap.ftab[nftab].entryoff)
    	if datap.minpc != min || datap.maxpc != max {
    		println("minpc=", hex(datap.minpc), "min=", hex(min), "maxpc=", hex(datap.maxpc), "max=", hex(max))
    		throw("minpc or maxpc invalid")
    	}
    
    	for _, modulehash := range datap.modulehashes {
    		if modulehash.linktimehash != *modulehash.runtimehash {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant.mlir

      %mini = "tf.Identity"(%min) : (tensor<f32>) -> tensor<f32>
      %maxi = "tf.Identity"(%max) : (tensor<f32>) -> tensor<f32>
      %minc = "tf.Cast"(%mini) : (tensor<f32>) -> tensor<f32>
      %maxc = "tf.Cast"(%maxi) : (tensor<f32>) -> tensor<f32>
      %rst = "tf.FakeQuantWithMinMaxVars"(%in, %minc, %maxc) {num_bits = 5, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
      func.return %rst : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant-4bit.mlir

      %mini = "tf.Identity"(%min) : (tensor<f32>) -> tensor<f32>
      %maxi = "tf.Identity"(%max) : (tensor<f32>) -> tensor<f32>
      %minc = "tf.Cast"(%mini) : (tensor<f32>) -> tensor<f32>
      %maxc = "tf.Cast"(%maxi) : (tensor<f32>) -> tensor<f32>
      %rst = "tf.FakeQuantWithMinMaxVars"(%in, %minc, %maxc) {num_bits = 3, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
      func.return %rst : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. src/runtime/stack.go

    }
    
    // bv describes the memory starting at address scanp.
    // Adjust any pointers contained therein.
    func adjustpointers(scanp unsafe.Pointer, bv *bitvector, adjinfo *adjustinfo, f funcInfo) {
    	minp := adjinfo.old.lo
    	maxp := adjinfo.old.hi
    	delta := adjinfo.delta
    	num := uintptr(bv.n)
    	// If this frame might contain channel receive slots, use CAS
    	// to adjust pointers. If the slot hasn't been received into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pcln.go

    		}
    
    		// Write header.
    		// Keep in sync with runtime/symtab.go:pcHeader and package debug/gosym.
    		header.SetUint32(ctxt.Arch, 0, 0xfffffff1)
    		header.SetUint8(ctxt.Arch, 6, uint8(ctxt.Arch.MinLC))
    		header.SetUint8(ctxt.Arch, 7, uint8(ctxt.Arch.PtrSize))
    		off := header.SetUint(ctxt.Arch, 8, uint64(state.nfunc))
    		off = header.SetUint(ctxt.Arch, off, uint64(state.nfiles))
    		if off != textStartOff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    			}
    			newtextp = append(newtextp, ctxt.tramps[i:ntramps]...)
    
    			ctxt.Textp = newtextp
    		}
    	}
    
    	// Add MinLC size after etext, so it won't collide with the next symbol
    	// (which may confuse some symbolizer).
    	sect.Length = va - sect.Vaddr + uint64(ctxt.Arch.MinLC)
    	ldr.SetSymSect(etext, sect)
    	if ldr.SymValue(etext) == 0 {
    		// Set the address of the start/end symbols, if not already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. src/runtime/asm_amd64.s

    	// intended to be called by debuggers.
    	MOVQ	$runtime·debugPinnerV1<ABIInternal>(SB), AX
    	MOVQ	$runtime·debugCallV2<ABIInternal>(SB), AX
    	RET
    
    // mainPC is a function value for runtime.main, to be passed to newproc.
    // The reference to runtime.main is made via ABIInternal, since the
    // actual function (not the ABI0 wrapper) is needed by newproc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    	addAddrPlus := loader.GenAddAddrPlusFunc(internalExec)
    
    	fsu.AddBytes(zeros[:pad])
    
    	var deltaBuf []byte
    	pcsp := obj.NewPCIter(uint32(d.arch.MinLC))
    	for _, s := range d.linkctxt.Textp {
    		fn := loader.Sym(s)
    		fi := d.ldr.FuncInfo(fn)
    		if !fi.Valid() {
    			continue
    		}
    		fpcsp := d.ldr.Pcsp(s)
    
    		// Emit a FDE, Section 6.4.1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    happen. Please open a bug report.");if(a.reason==="min-and-max"||s.reason==="min-and-max")throw new Error("Attempted to sort a screen with both min and max values. This should never happen. Please open a bug report.");let{min:o,max:u}=r.values[0],{min:c,max:f}=n.values[0];e.not&&([o,u]=[u,o]),t.not&&([c,f]=[f,c]),o=o===void 0?o:parseFloat(o),u=u===void 0?u:parseFloat(u),c=c===void 0?c:parseFloat(c),f=f===void 0?f:parseFloat(f);let[d,p]=i==="min"?[o,c]:[f,u];return d-p}function dn(i,e){return typeof...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top