Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for interior (0.19 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-tfl-stablehlo-pad.mlir

        }
      }
    
    // CHECK:       module {
    // CHECK-NEXT:    func @main(%arg0: tensor<8x128xf32>, %arg1: tensor<f32>) -> tensor<11x131xf32> {
    // CHECK-NEXT:      %0 = stablehlo.pad %arg0, %arg1, low = [1, 0], high = [2, 3], interior = [0, 0] : (tensor<8x128xf32>, tensor<f32>) -> tensor<11x131xf32>
    // CHECK-NEXT:      return %0 : tensor<11x131xf32>
    // CHECK-NEXT:    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Dec 11 20:41:19 UTC 2023
    - 939 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize_layout.mlir

    // CHECK-SAME:          %[[PAD_VAL:.*]]: tensor<f32>) -> tensor<1x64x114x114xf32> {
    // CHECK:           %[[PAD:.*]] = stablehlo.pad %[[INPUT]], %[[PAD_VAL]],
    // CHECK:               low = [0, 1, 1, 0], high = [0, 1, 1, 0], interior = [0, 0, 0, 0]
    // CHECK:               : (tensor<1x112x112x64xf32>, tensor<f32>) -> tensor<1x114x114x64xf32>
    // CHECK:           %[[TPOS:.*]] = stablehlo.transpose %[[PAD]], 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)
  3. guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

        stack.push(reverse(encoded.subSequence(start, idx)));
    
        if (c == '!' || c == '?' || c == ':' || c == ',') {
          // '!' represents an interior node that represents a REGISTRY entry in the map.
          // '?' represents a leaf node, which represents a REGISTRY entry in map.
          // ':' represents an interior node that represents a private entry in the map
          // ',' represents a leaf node, which represents a private entry in the map.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

        stack.push(reverse(encoded.subSequence(start, idx)));
    
        if (c == '!' || c == '?' || c == ':' || c == ',') {
          // '!' represents an interior node that represents a REGISTRY entry in the map.
          // '?' represents a leaf node, which represents a REGISTRY entry in map.
          // ':' represents an interior node that represents a private entry in the map
          // ',' represents a leaf node, which represents a private entry in the map.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    }
    
    func doubleCheckHeapPointersInterior(x, interior, size, dataSize uintptr, typ *_type, header **_type, span *mspan) {
    	bad := false
    	if interior < x {
    		print("runtime: interior=", hex(interior), " x=", hex(x), "\n")
    		throw("found bad interior pointer")
    	}
    	off := interior - x
    	tp := span.typePointersOf(interior, size)
    	for i := off; i < off+size; i += goarch.PtrSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/net/http/routing_tree.go

    package http
    
    import (
    	"strings"
    )
    
    // A routingNode is a node in the decision tree.
    // The same struct is used for leaf and interior nodes.
    type routingNode struct {
    	// A leaf node holds a single pattern and the Handler it was registered
    	// with.
    	pattern *pattern
    	handler Handler
    
    	// An interior node maps parts of the incoming request to child nodes.
    	// special children keys:
    	//     "/"	trailing slash (resulting from {$})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    		panic("outer has outer itself")
    	}
    	// Interior sym should not already have a sibling.
    	if l.SubSym(interior) != 0 {
    		panic("sub set for subsym")
    	}
    	// Interior sym should not already point at a container.
    	if l.OuterSym(interior) != 0 {
    		panic("outer already set for subsym")
    	}
    	l.sub[interior] = l.sub[container]
    	l.sub[container] = interior
    	l.outer[interior] = container
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/go/ast/issues_test.go

    // license that can be found in the LICENSE file.
    
    // Package p doc comment goes here.
    //
    // Code generated by gen. DO NOT EDIT. 
    package p
    
    ... `, false},
    		// Special comment has rogue interior space.
    		{`//     Code generated by gen. DO NOT EDIT.
    package p
    `, false},
    		// Special comment lacks the middle portion.
    		{`// Code generated DO NOT EDIT.
    package p
    `, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 13:57:33 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    // interior whitespace of path[0].
    // In this example:
    //
    //	z := x + y // add them
    //	  <--C-->     <---E-->
    //	    ^
    //	    D
    //
    // intervals C, D and E are inexact.  C is contained by the
    // z-assignment statement, because it spans three of its children (:=,
    // x, +).  So too is the 1-char interval D, because it contains only
    // interior whitespace of the assignment.  E is considered interior
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. src/go/printer/comment.go

    		if i == colon {
    			continue
    		}
    		b := c[i]
    		if !('a' <= b && b <= 'z' || '0' <= b && b <= '9') {
    			return false
    		}
    	}
    	return true
    }
    
    // allStars reports whether text is the interior of an
    // old-style /* */ comment with a star at the start of each line.
    func allStars(text string) bool {
    	for i := 0; i < len(text); i++ {
    		if text[i] == '\n' {
    			j := i + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 07:35:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top