Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for interior (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    		}
    		if strings.Contains(text, "//go:build") {
    			check.goBuildLine(pos, text)
    		}
    	}
    	if strings.HasPrefix(text, "/*") {
    		if i := strings.Index(text, "\n"); i >= 0 {
    			// multiline /* */ comment - process interior lines
    			check.inStar = true
    			i++
    			pos += token.Pos(i)
    			text = text[i:]
    			for text != "" {
    				i := strings.Index(text, "\n")
    				if i < 0 {
    					i = len(text)
    				} else {
    					i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      // the merged pad will not change anything, while the un-merged will remove a
      // value, then insert a 0 at its place. This only holds for low and high pads,
      // the spec does not allow negative interior pads, so we don't check there.
      auto low_pads = pad_op.getEdgePaddingLow().getValues<IntegerAttr>();
      auto parent_low_pads =
          parent_pad.getEdgePaddingLow().getValues<IntegerAttr>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // Tests that a quantized `stablehlo.pad` without interior padding is
    // converted to `tfl.padv2`.
    
    func.func @pad_without_interior_padding(
        %arg0: tensor<2x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>,
        %arg1: tensor<!quant.uniform<i8:f32, 2.000000e+00:-1>>
      ) -> tensor<4x5x!quant.uniform<i8:f32, 2.000000e+00:-1>> {
      %0 = stablehlo.pad %arg0, %arg1, low = [0, 1], high = [2, 1], interior = [0, 0] : (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits.go

    			newSearchIdx = i*64 + uint(sys.TrailingZeros64(^bi))
    		}
    		start := uint(sys.TrailingZeros64(bi))
    		if end+start >= uint(npages) {
    			return i*64 - end, newSearchIdx
    		}
    		// Next, check the interior of the 64-bit chunk.
    		j := findBitRange64(^bi, uint(npages))
    		if j < 64 {
    			return i*64 + j, newSearchIdx
    		}
    		end = uint(sys.LeadingZeros64(bi))
    	}
    	return ^uint(0), newSearchIdx
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    class SliceDenseIntElementsAttr<string index, string axis> : NativeCodeCall<
      "SliceDenseIntElementsAttr($0.cast<ElementsAttr>(), " # index # ", " # axis # ")">;
    
    // Interior padding attribute based on the TF padding.
    def GetInteriorPadding : NativeCodeCall <
      "GetInteriorPadding($0.cast<ElementsAttr>())">;
    
    def : Pat<(TF_PadV2Op $input, (ConstantLikeMatcher ElementsAttr:$padding), $c),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. src/encoding/base32/base32.go

    		p = p[i:]
    		if e.nbuf < 5 {
    			return
    		}
    		e.enc.Encode(e.out[0:], e.buf[0:])
    		if _, e.err = e.w.Write(e.out[0:8]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 5 {
    		nn := len(e.out) / 8 * 5
    		if nn > len(p) {
    			nn = len(p)
    			nn -= nn % 5
    		}
    		e.enc.Encode(e.out[0:], p[0:nn])
    		if _, e.err = e.w.Write(e.out[0 : nn/5*8]); e.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top