Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Paper (0.04 sec)

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

    		bucketHead[vsw] = w
    
    		linkOrig(parent[w], w, ancestor)
    
    		// step3 in TOPLAS paper
    		for v := bucketHead[parent[w]]; v != 0; v = bucketLink[v] {
    			u := evalOrig(v, ancestor, semi, label)
    			if semi[u] < semi[v] {
    				idom[v] = fromID[u]
    			} else {
    				idom[v] = fromID[parent[w]]
    			}
    		}
    	}
    	// step 4 in toplas paper
    	for i := ID(2); i <= n; i++ {
    		w := vertex[i]
    		if idom[w].ID != vertex[semi[w]] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. src/math/exp_amd64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // The method is based on a paper by Naoki Shibata: "Efficient evaluation
    // methods of elementary functions suitable for SIMD computation", Proc.
    // of International Supercomputing Conference 2010 (ISC'10), pp. 25 -- 32
    // (May 2010). The paper is available at
    // https://link.springer.com/article/10.1007/s00450-010-0108-2
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // server requests".  One QueueSet is a set of queues operating
    // according to this technique.
    //
    // Fair queuing for server requests is inspired by the fair queuing
    // technique from the world of networking.  You can find a good paper
    // on that at https://dl.acm.org/citation.cfm?doid=75247.75248 or
    // http://people.csail.mit.edu/imcgraw/links/research/pubs/networks/WFQ.pdf
    // and there is an implementation outline in the Wikipedia article at
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/hash/test_cases.txt

    It's a tiny change to the code and not completely disgusting. - Bob Manchek
    size:  a.out:  bad magic
    The major problem is with sendmail.  -Mark Horton
    Give me a rock, paper and scissors and I will move the world.  CCFestoon
    If the enemy is within range, then so are you.
    It's well we cannot hear the screams/That we create in others' dreams.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  5. src/go/doc/comment/text.go

    		if n > max {
    			return score{v, p}
    		}
    		return score{0, v + p}
    	}
    
    	// The rest of this function is “The Basic Algorithm” from
    	// Hirschberg and Larmore's conference paper,
    	// using the same names as in the paper.
    	f := []score{{0, 0}}
    	g := func(i, j int) score { return add(f[i], weight(i, j)) }
    
    	bridge := func(a, b, c int) bool {
    		k := c + sort.Search(len(words)+1-c, func(k int) bool {
    			k += c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_amd64.s

    	MOVL DX, retC+104(FP)
    	RET
    
    // CRC32 polynomial data
    //
    // These constants are lifted from the
    // Linux kernel, since they avoid the costly
    // PSHUFB 16 byte reversal proposed in the
    // original Intel paper.
    DATA r2r1<>+0(SB)/8, $0x154442bd4
    DATA r2r1<>+8(SB)/8, $0x1c6e41596
    DATA r4r3<>+0(SB)/8, $0x1751997d0
    DATA r4r3<>+8(SB)/8, $0x0ccaa009e
    DATA rupoly<>+0(SB)/8, $0x1db710641
    DATA rupoly<>+8(SB)/8, $0x1f7011641
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  7. CITATION.cff

    authors:
      - family-names: Abadi
        given-names: Martín
      - family-names: Agarwal
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 06 15:26:23 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_ppc64x.s

    #include "textflag.h"
    
    // For more details about how various memory models are
    // enforced on POWER, the following paper provides more
    // details about how they enforce C/C++ like models. This
    // gives context about why the strange looking code
    // sequences below work.
    //
    // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html
    
    // uint32 ·Load(uint32 volatile* ptr)
    TEXT ·Load(SB),NOSPLIT|NOFRAME,$-8-12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/math/rand/normal.go

    package rand
    
    import (
    	"math"
    )
    
    /*
     * Normal distribution
     *
     * See "The Ziggurat Method for Generating Random Variables"
     * (Marsaglia & Tsang, 2000)
     * http://www.jstatsoft.org/v05/i08/paper [pdf]
     */
    
    const (
    	rn = 3.442619855899
    )
    
    func absInt32(i int32) uint32 {
    	if i < 0 {
    		return uint32(-i)
    	}
    	return uint32(i)
    }
    
    // NormFloat64 returns a normally distributed float64 in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/math/rand/v2/normal.go

    package rand
    
    import (
    	"math"
    )
    
    /*
     * Normal distribution
     *
     * See "The Ziggurat Method for Generating Random Variables"
     * (Marsaglia & Tsang, 2000)
     * http://www.jstatsoft.org/v05/i08/paper [pdf]
     */
    
    const (
    	rn = 3.442619855899
    )
    
    func absInt32(i int32) uint32 {
    	if i < 0 {
    		return uint32(-i)
    	}
    	return uint32(i)
    }
    
    // NormFloat64 returns a normally distributed float64 in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:08:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top