Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for Boundaries (0.3 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @Bucketize(%arg0: tensor<3x2xf32>) -> tensor<3x2xi32> {
      %0 = "tf.Bucketize"(%arg0) {boundaries = [1.0 : f32, 10.0 : f32, 100.0 : f32]} : (tensor<3x2xf32>) -> tensor<3x2xi32>
      func.return %0: tensor<3x2xi32>
    
    // CHECK-LABEL: Bucketize
    // CHECK:  "tfl.bucketize"(%arg0) <{boundaries = [1.000000e+00 : f32, 1.000000e+01 : f32, 1.000000e+02 : f32]}> : (tensor<3x2xf32>) -> tensor<3x2xi32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		talign := t.Align
    		if f.BitOffset > 0 || f.BitSize > 0 {
    			// The layout of bitfields is implementation defined,
    			// so we don't know how they correspond to Go fields
    			// even if they are aligned at byte boundaries.
    			continue
    		}
    
    		if talign > 0 && f.ByteOffset%talign != 0 {
    			// Drop misaligned fields, the same way we drop integer bit fields.
    			// The goal is to make available what can be made available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    				if have[rel] != pid {
    					have[rel] = pid
    					list = append(list, rel)
    				}
    
    			case info.IsDir():
    				// Gather all files in the named directory, stopping at module boundaries
    				// and ignoring files that wouldn't be packaged into a module.
    				count := 0
    				err := fsys.Walk(file, func(path string, info os.FileInfo, err error) error {
    					if err != nil {
    						return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    			secretKey:        credentials.SecretKey,
    
    			expectedRespStatus: http.StatusBadRequest,
    		},
    
    		// Test case - 6.
    		// Test case with invalid byte range for exceeding source size boundaries.
    		{
    			bucketName:       bucketName,
    			uploadID:         uploadID,
    			copySourceHeader: url.QueryEscape(SlashSeparator + bucketName + SlashSeparator + objectName),
    			copySourceRange:  "bytes=0-6144",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let hasFolder = 1;
    }
    
    def TF_BucketizeOp : TF_Op<"Bucketize", [Pure, SameOperandsAndResultShape]> {
      let summary = "Bucketizes 'input' based on 'boundaries'.";
    
      let description = [{
    For example, if the inputs are
        boundaries = [0, 10, 100]
        input = [[-5, 10000]
                 [150,   10]
                 [5,    100]]
    
    then the output will be
        output = [[0, 3]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    func (s *State) Prog(as obj.As) *obj.Prog {
    	p := s.pp.Prog(as)
    	if objw.LosesStmtMark(as) {
    		return p
    	}
    	// Float a statement start to the beginning of any same-line run.
    	// lineRunStart is reset at block boundaries, which appears to work well.
    	if s.lineRunStart == nil || s.lineRunStart.Pos.Line() != p.Pos.Line() {
    		s.lineRunStart = p
    	} else if p.Pos.IsStmt() == src.PosIsStmt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    			m := ab.Len()
    			if int(p.Isize) != m {
    				p.Isize = uint8(m)
    				if pjc.reAssemble(p) {
    					// We need to re-assemble here to check for jumps and fused jumps
    					// that span or end on 32 byte boundaries.
    					reAssemble = true
    				}
    			}
    
    			s.Grow(p.Pc + int64(m))
    			copy(s.P[p.Pc:], ab.Bytes())
    			// If there was padding, remember it.
    			if pPrev != nil && !ctxt.IsAsm && c > c0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. RELEASE.md

                supports equivalent functionality. `max_tokens` argument renamed to
                `num_tokens`.
            *   `Discretization` added `num_bins` argument for learning bins
                boundaries through calling `adapt` on a dataset. Renamed `bins`
                argument to `bin_boundaries` for specifying bins without `adapt`.
        *   Improvements to model saving/loading:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top