Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for Paper (0.07 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        predicate condition, and returns two values matching the type of the data
        predicate.
      }];
    
      let description = [{
        More details can be found in Tensorflow Control Flow white paper:
        https://storage.googleapis.com/download.tensorflow.org/paper/white_paper_tf_control_flow_implementation_2017_11_1.pdf
    
        This is defined in TensorFlow as:
    
        REGISTER_OP("Switch")
           .Input("data: T")
           .Input("pred: bool")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/testdata/Isaac.Newton-Opticks.txt

    Paper with straight and parallel edges, and ordered the Prisms and Paper
    so, that the red Colour of one Image might fall directly upon one half
    of the Paper, and the violet Colour of the other Image upon the other
    half of the same Paper; so that the Paper appeared of two Colours, red
    and violet, much after the manner of the painted Paper in the first and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Images of the Sun. And at a little distance from the Wall I placed a long slender Paper with straight and parallel edges, and ordered the Prisms and Paper so, that the red Colour of one Image might fall directly upon one half of the Paper, and the violet Colour of the other Image upon the other half of the same Paper; so that the Paper appeared of two Colours, red and violet, much after the manner of the painted Paper in the first and second Experiments. Then with a black Cloth I covered the Wall behind...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/sort/zsortinterface.go

    // The algorithm needs O(M*log(N/M + 1)) calls to data.Less.
    // The algorithm needs O((M+N)*log(M)) calls to data.Swap.
    //
    // The paper gives O((M+N)*log(M)) as the number of assignments assuming a
    // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
    // in the paper carries through for Swap operations, especially as the block
    // swapping rotate uses only O(M+N) Swaps.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
Back to top