Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for esize (0.11 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    		r := int((p.Reg) & 31)
    
    		Q := 0
    		size := 0
    		switch af {
    		case ARNG_16B:
    			Q = 1
    			size = 0
    		case ARNG_2D:
    			Q = 1
    			size = 3
    		case ARNG_2S:
    			Q = 0
    			size = 2
    		case ARNG_4H:
    			Q = 0
    			size = 1
    		case ARNG_4S:
    			Q = 1
    			size = 2
    		case ARNG_8B:
    			Q = 0
    			size = 0
    		case ARNG_8H:
    			Q = 1
    			size = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/reflect/type.go

    		comparable = comparable && (ft.Equal != nil)
    
    		offset := align(size, uintptr(ft.Align_))
    		if offset < size {
    			panic("reflect.StructOf: struct size would exceed virtual address space")
    		}
    		if ft.Align_ > typalign {
    			typalign = ft.Align_
    		}
    		size = offset + ft.Size_
    		if size < offset {
    			panic("reflect.StructOf: struct size would exceed virtual address space")
    		}
    		f.Offset = offset
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/runtime/msize.go

    // Malloc small size classes.
    //
    // See malloc.go for overview.
    // See also mksizeclasses.go for how we decide what size classes to use.
    
    package runtime
    
    // Returns size of the memory block that mallocgc will allocate if you ask for the size,
    // minus any inline space for metadata.
    func roundupsize(size uintptr, noscan bool) (reqSize uintptr) {
    	reqSize = size
    	if reqSize <= maxSmallSize-mallocHeaderSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeResizeBilinear : Pat<
      (TF_ResizeBilinearOp $images, $size, $align_corners, $half_pixel_centers),
      (TFL_ResizeBilinearOp $images, $size, $align_corners, $half_pixel_centers)>;
    def LegalizeResizeNearestNeighbor : Pat<
      (TF_ResizeNearestNeighborOp $images, $size, $align_corners,
        $half_pixel_centers),
      (TFL_ResizeNearestNeighborOp $images, $size, $align_corners,
        $half_pixel_centers)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/odml-to-stablehlo-smuggle-resize.mlir

    // RUN: odml_to_stablehlo %s -skip-resize -smuggle-disallowed-ops -o - | FileCheck %s
    // RUN: odml-to-stablehlo-opt %s --smuggle-disallowed-ops-pass | FileCheck %s --check-prefix=CHECK-OPT
    
    // CHECK-LABEL: @main
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 975 : i32}, tf_saved_model.semantics}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 18:33:43 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/syscall/syscall_aix.go

    	n := 0
    	for len(out) > 0 {
    		bsize := len(out)
    		if bsize > 1024 {
    			bsize = 1024
    		}
    		err = ptrace64Ptr(PT_READ_BLOCK, int64(pid), int64(addr), bsize, unsafe.Pointer(&out[0]))
    		if err != nil {
    			return 0, err
    		}
    		addr += uintptr(bsize)
    		n += bsize
    		out = out[n:]
    	}
    	return n, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_xla.mlir

      %1 = "quantfork.dcast"(%0) : (tensor<*x!quant.uniform<i8:f32, 5.000000e-02:-10>>) -> tensor<*xf32>
      %2 = "tf.MaxPool"(%1) {data_format = "NHWC", device = "", explicit_paddings = [], ksize = [1, 2, 2, 1], padding = "VALID", strides = [1, 2, 2, 1]} : (tensor<*xf32>) -> tensor<*xf32>
      %3 = "quantfork.qcast"(%2) {volatile} : (tensor<*xf32>) -> tensor<*x!quant.uniform<i8:f32, 5.000000e-02:-10>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder.go

    func (a byPVCSize) Swap(i, j int) {
    	a[i], a[j] = a[j], a[i]
    }
    
    func (a byPVCSize) Less(i, j int) bool {
    	iSize := a[i].Spec.Resources.Requests[v1.ResourceStorage]
    	jSize := a[j].Spec.Resources.Requests[v1.ResourceStorage]
    	// return true if iSize is less than jSize
    	return iSize.Cmp(jSize) == -1
    }
    
    // isCSIMigrationOnForPlugin checks if CSI migration is enabled for a given plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. src/os/types_windows.go

    	// not just the ones documented.
    	// EaSize contains the reparse tag if the file is a reparse point.
    	return &fileStat{
    		FileAttributes: d.FileAttributes,
    		CreationTime:   d.CreationTime,
    		LastAccessTime: d.LastAccessTime,
    		LastWriteTime:  d.LastWriteTime,
    		FileSizeHigh:   uint32(d.EndOfFile >> 32),
    		FileSizeLow:    uint32(d.EndOfFile),
    		ReparseTag:     d.EaSize,
    		idxhi:          uint32(d.FileID >> 32),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	case asmComplex:
    		fsize := size / 2
    		cc = append(cc, newComponent(suffix+"_real", asmKind(fsize), fmt.Sprintf("real(complex%d)", size*8), off, fsize, suffix))
    		cc = append(cc, newComponent(suffix+"_imag", asmKind(fsize), fmt.Sprintf("imag(complex%d)", size*8), off+fsize, fsize, suffix))
    
    	case asmStruct:
    		tu := t.Underlying().(*types.Struct)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top