Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 388 for alignment (0.43 sec)

  1. src/runtime/sys_openbsd_386.s

    	MOVL	bp-8(SP),  BP
    	MOVL	bx-4(SP),  BX
    	RET
    
    // These trampolines help convert from Go calling convention to C calling convention.
    // They should be called with asmcgocall - note that while asmcgocall does
    // stack alignment, creation of a frame undoes it again.
    // A pointer to the arguments is passed on the stack.
    // A single int32 result is returned in AX.
    // (For more results, make an args/results structure.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		// arg1 = address of src memory (in X6, changed as side effect)
    		// arg2 = address of the last element of src (can't be X7 as we clobber it before using arg2)
    		// arg3 = mem
    		// auxint = alignment
    		// clobbers X7 as a tmp register.
    		// returns mem
    		//	mov	(X6), X7
    		//	mov	X7, (X5)
    		//	ADD	$sz, X5
    		//	ADD	$sz, X6
    		//	BGEU	Rarg2, X5, -4(PC)
    		{
    			name:      "LoweredMove",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/test.go

    		// but not RawImports (because they were not in the source code).
    		// We insert TestImports, imports, and rawTestImports at the start of
    		// these lists to preserve the alignment.
    		// Note that p.Internal.Imports may not be aligned with p.Imports/p.Internal.RawImports,
    		// but we insert at the beginning there too just for consistency.
    		ptest.Imports = str.StringList(p.TestImports, p.Imports)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/func.go

    		return nil, nil, 0
    	}
    	n = iter.closureVars[iter.next]
    	typ = n.Type()
    	if !n.Byval() {
    		typ = types.NewPtr(typ)
    	}
    	iter.next++
    	offset = types.RoundUp(iter.offset, typ.Alignment())
    	iter.offset = offset + typ.Size()
    	return n, typ, offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy_static.go

    						return fmt.Errorf("[memorymanager] (pod: %s, container: %s) the memory assignment uses the NUMA that does not exist", pod, containerName)
    					}
    
    					nodeState.NumberOfAssignments++
    					nodeState.Cells = b.NUMAAffinity
    
    					memoryState, ok := nodeState.MemoryMap[b.Type]
    					if !ok {
    						return fmt.Errorf("[memorymanager] (pod: %s, container: %s) the memory assignment uses memory resource that does not exist", pod, containerName)
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  6. src/internal/trace/gc.go

    	// utilization for all windows that start in that band.
    
    	// minBands is the minimum number of bands a window can span
    	// and maxBands is the maximum number of bands a window can
    	// span in any alignment.
    	minBands := int((int64(window) + c.bandDur - 1) / c.bandDur)
    	maxBands := int((int64(window) + 2*(c.bandDur-1)) / c.bandDur)
    	if window > 1 && maxBands < 2 {
    		panic("maxBands < 2")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. src/runtime/chan.go

    	elem := t.Elem
    
    	// compiler checks this but be safe.
    	if elem.Size_ >= 1<<16 {
    		throw("makechan: invalid channel element type")
    	}
    	if hchanSize%maxAlign != 0 || elem.Align_ > maxAlign {
    		throw("makechan: bad alignment")
    	}
    
    	mem, overflow := math.MulUintptr(elem.Size_, uintptr(size))
    	if overflow || mem > maxAlloc-hchanSize || size < 0 {
    		panic(plainError("makechan: size out of range"))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/runtime/asm_s390x.s

    g0:
    	// Save room for two of our pointers, plus 160 bytes of callee
    	// save area that lives on the caller stack.
    	SUB	$176, R15
    	MOVD	$~7, R6
    	AND	R6, R15                 // 8-byte alignment for gcc ABI
    	MOVD	R5, 168(R15)             // save old g on stack
    	MOVD	(g_stack+stack_hi)(R5), R5
    	SUB	R2, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema.fbs

      operators:[Operator];
    
      // Name of this subgraph (used for debugging).
      name:string;
    }
    
    // Table of raw data buffers (used for constant tensors). Referenced by tensors
    // by index. The generous alignment accommodates mmap-friendly data structures.
    table Buffer {
      data:[ubyte] (force_align: 16);
    
      // In a model that is larger than 2GB, then buffers instead uses the following
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

          /*fused_activation_function=*/rewriter.getStringAttr("NONE"), padding,
          stride_depth, stride_height, stride_width);
    
      return success();
    }
    
    // MatrixDiagV3 is MatrixDiagV2 with an alignment attribute. This attribute
    // only has effects when processing multiple diagonals. Since TFLite converts
    // MatrixDiagV{2,3} to MatrixDiag, which only takes single-diagonal inputs, we
    // can safely ignore this V3 attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top