Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for tPos (0.04 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize_layout.mlir

    // CHECK:           %[[TPOS:.*]] = stablehlo.transpose %[[REDUCE]], dims = [0, 3, 1, 2]
    // CHECK:              : (tensor<1x56x56x64xf32>) -> tensor<1x64x56x56xf32>
    // CHECK:           return %[[TPOS]] : tensor<1x64x56x56xf32>
    
    func.func @commute_transpose_reduce_window(
          %input: tensor<1x114x114x64xf32>,
          %cst: tensor<f32>) -> tensor<1x64x56x56xf32> {
      %tpos = stablehlo.transpose %input, dims = [0, 3, 1, 2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue5162.go

    func CheckEqNNN_TTT() {
    	onesA := [NNN]ttt{ONES}
    	onesB := [NNN]ttt{ONES}
    	twos := [NNN]ttt{TWOS}
    	if onesA != onesB {
    		println("onesA != onesB in CheckEqNNN_TTT")
    	}
    	if onesA == twos {
    		println("onesA == twos in CheckEqNNN_TTT")
    	}
    	if onesB == twos {
    		println("onesB == twos in CheckEqNNN_TTT")
    	}
    	if s := fmt.Sprint(onesA == onesB, onesA != twos, onesB != twos); s != "true true true" {
    		println("fail in CheckEqNNN_TTT:", s)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 19:01:50 UTC 2013
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-shared/src/integTest/groovy/org/gradle/integtests/TarSlipIntegrationTest.groovy

                new TarOutputStream(it).withCloseable { TarOutputStream tos ->
                    TarEntry entry = new TarEntry('../../tmp/evil.sh')
                    byte[] bytes = 'evil'.getBytes('utf-8')
                    entry.size = bytes.length
                    tos.putNextEntry(entry)
                    tos.write(bytes)
                    tos.closeEntry()
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/lex/stack.go

    func (s *Stack) Push(tr TokenReader) {
    	s.tr = append(s.tr, tr)
    }
    
    func (s *Stack) Next() ScanToken {
    	tos := s.tr[len(s.tr)-1]
    	tok := tos.Next()
    	for tok == scanner.EOF && len(s.tr) > 1 {
    		tos.Close()
    		// Pop the topmost item from the stack and resume with the next one down.
    		s.tr = s.tr[:len(s.tr)-1]
    		tok = s.Next()
    	}
    	return tok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 09 22:33:23 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  5. src/internal/dag/alg.go

    func (g *Graph) Transpose() {
    	old := g.edges
    
    	g.edges = make(map[string]map[string]bool)
    	for _, n := range g.Nodes {
    		g.edges[n] = make(map[string]bool)
    	}
    
    	for from, tos := range old {
    		for to := range tos {
    			g.edges[to][from] = true
    		}
    	}
    }
    
    // Topo returns a topological sort of g. This function is deterministic.
    func (g *Graph) Topo() []string {
    	topo := make([]string, 0, len(g.Nodes))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 15:31:44 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/dom.go

    	s = append(s, blockAndIndex{b: f.Entry})
    	seen[f.Entry.ID] = true
    	for len(s) > 0 {
    		tos := len(s) - 1
    		x := s[tos]
    		b := x.b
    		if i := x.index; i < len(b.Succs) {
    			s[tos].index++
    			bb := b.Succs[i].Block()
    			if !seen[bb.ID] {
    				seen[bb.ID] = true
    				s = append(s, blockAndIndex{b: bb})
    			}
    			continue
    		}
    		s = s[:tos]
    		if ponums != nil {
    			ponums[b.ID] = int32(len(order))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. src/runtime/os2_plan9.go

    	_RFCNAMEG = 1 << 10
    	_RFCENVG  = 1 << 11
    	_RFCFDG   = 1 << 12
    	_RFREND   = 1 << 13
    	_RFNOMNT  = 1 << 14
    )
    
    // notify
    const (
    	_NCONT = 0
    	_NDFLT = 1
    )
    
    type uinptr _Plink
    
    type tos struct {
    	prof struct { // Per process profiling
    		pp    *_Plink // known to be 0(ptr)
    		next  *_Plink // known to be 4(ptr)
    		last  *_Plink
    		first *_Plink
    		pid   uint32
    		what  uint32
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 14 18:33:38 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  8. src/internal/dag/parse.go

    					errorf("use of %s before its definition", less)
    				} else {
    					g.AddEdge(def, less)
    				}
    			}
    		}
    	}
    
    	// Check for missing definition.
    	for _, tos := range g.edges {
    		for to := range tos {
    			if g.edges[to] == nil {
    				errorf("missing definition for %s", to)
    			}
    		}
    	}
    
    	// Complete transitive closure.
    	for _, k := range g.Nodes {
    		for _, i := range g.Nodes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/net/http/mapping_test.go

    		"go_mem.html",
    		"go_spec.html",
    		"help.html",
    		"ie.css",
    		"install-source.html",
    		"install.html",
    		"logo-153x55.png",
    		"Makefile",
    		"root.html",
    		"share.png",
    		"sieve.gif",
    		"tos.html",
    		"articles",
    	}
    	if len(children) != 32 {
    		panic("bad len")
    	}
    	for _, n := range []int{2, 4, 8, 16, 32} {
    		list := children[:n]
    		b.Run(fmt.Sprintf("n=%d", n), func(b *testing.B) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 17:47:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

            return buf.toString();
        }
    
        protected void sendToGoogleChat(final CardView cardView, final SMailPostingDiscloser discloser) {
            // https://developers.google.com/hangouts/chat/how-tos/webhooks
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String googleChatWebhookUrls = fessConfig.getGoogleChatWebhookUrls();
            if (StringUtil.isBlank(googleChatWebhookUrls)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top