Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 241 for esize (0.09 sec)

  1. src/cmd/vendor/golang.org/x/term/term_unix.go

    	termios.Oflag &^= unix.OPOST
    	termios.Lflag &^= unix.ECHO | unix.ECHONL | unix.ICANON | unix.ISIG | unix.IEXTEN
    	termios.Cflag &^= unix.CSIZE | unix.PARENB
    	termios.Cflag |= unix.CS8
    	termios.Cc[unix.VMIN] = 1
    	termios.Cc[unix.VTIME] = 0
    	if err := unix.IoctlSetTermios(fd, ioctlWriteTermios, termios); err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

          CompileTimeConstantOperand<TF::MaxOp, 1>,  // $reduction_indices
          // $ksize, $strides
          CompileTimeConstantOperand<TF::MaxPoolGradGradV2Op, 3, 4>,
          // $ksize, $strides
          CompileTimeConstantOperand<TF::MaxPoolGradV2Op, 2, 3>,
          CompileTimeConstantOperand<TF::MaxPoolV2Op, 1, 2>,   // $ksize, $strides
          CompileTimeConstantOperand<TF::MeanOp, 1>,           // $reduction_indices
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/typed_xds_cache.go

    	l.recordDependentConfigSize()
    	l.mu.Unlock()
    }
    
    func (l *lruCache[K]) recordDependentConfigSize() {
    	if !enableStats() {
    		return
    	}
    	dsize := 0
    	for _, dependents := range l.configIndex {
    		dsize += len(dependents)
    	}
    	dependentConfigSize.Record(float64(dsize))
    }
    
    // This is the callback passed to LRU, it will be called whenever a key is removed.
    func (l *lruCache[K]) onEvict(k K, v cacheValue) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/syscall/security_windows.go

    //sys	TranslateName(accName *uint16, accNameFormat uint32, desiredNameFormat uint32, translatedName *uint16, nSize *uint32) (err error) [failretval&0xff==0] = secur32.TranslateNameW
    //sys	GetUserNameEx(nameFormat uint32, nameBuffre *uint16, nSize *uint32) (err error) [failretval&0xff==0] = secur32.GetUserNameExW
    
    // TranslateAccountName converts a directory service
    // object name from one format to another.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Atim      Time_t
    	Mtim      Time_t
    	Ctim      Time_t
    	Creatim   Time_t
    	Reftim    Time_t
    	_         [24]byte // rsrvd5
    }
    
    type Statvfs_t struct {
    	ID          [4]byte
    	Len         int32
    	Bsize       uint64
    	Blocks      uint64
    	Usedspace   uint64
    	Bavail      uint64
    	Flag        uint64
    	Maxfilesize int64
    	_           [16]byte
    	Frsize      uint64
    	Bfree       uint64
    	Files       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_move_transposes_end.mlir

      // MaxPool operand transpose must be folded into the op and MaxPool
      // must use NCHW data format with updated kernel size and strides.
    
      // CHECK: %[[RES_PERM:.*]] = "tf.Const"() <{value = dense<[0, 2, 3, 1]> : tensor<4xi32>}>
      // CHECK: %[[MAX_POOL:[0-9]*]] = "tf.MaxPool"(%arg0) <{data_format = "NCHW", ksize = [1, 1, 3, 3], padding = "SAME", strides = [1, 1, 2, 2]}> : (tensor<1x64x112x112xf32>) -> tensor<1x64x56x56xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/syscall_windows.go

    	LastAccessTime  syscall.Filetime
    	LastWriteTime   syscall.Filetime
    	ChangeTime      syscall.Filetime
    	EndOfFile       uint64
    	AllocationSize  uint64
    	FileAttributes  uint32
    	FileNameLength  uint32
    	EaSize          uint32
    	ShortNameLength uint32
    	ShortName       [12]uint16
    	FileID          uint64
    	FileName        [1]uint16
    }
    
    type FILE_FULL_DIR_INFO struct {
    	NextEntryOffset uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions.mlir

        %6 = "quantfork.dcast"(%5) : (tensor<*x!quant.uniform<i8:f32, 5.000000e-02:-1>>) -> tensor<*xf32>
        %7 = "tf.AvgPool"(%6) {data_format = "NHWC", ksize = [1, 2, 2, 1], padding = "VALID", strides = [1, 1, 1, 1]} : (tensor<*xf32>) -> tensor<*xf32>
        func.return %7 : tensor<*xf32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/endtoend_test.go

    		if text == nil {
    			t.Errorf("%s: instruction outside TEXT", p)
    		}
    		size := int64(len(text.P)) - p.Pc
    		if p.Link != nil {
    			size = p.Link.Pc - p.Pc
    		} else if p.Isize != 0 {
    			size = int64(p.Isize)
    		}
    		var code []byte
    		if p.Pc < int64(len(text.P)) {
    			code = text.P[p.Pc:]
    			if size < int64(len(code)) {
    				code = code[:size]
    			}
    		}
    		codeHex := fmt.Sprintf("%x", code)
    		if codeHex == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // OK
      %0 = "tf.AvgPool"(%arg0) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", ksize = [1, 3, 6, 1], padding = "VALID", strides = [1, 3, 1, 1]} : (tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32>
      // Unsupported ksize
      %1 = "tf.AvgPool"(%arg0) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", ksize = [3, 3, 6, 1], padding = "VALID", strides = [1, 3, 1, 1]} : (tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
Back to top