Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for hardware (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go

    	{"kern.sysvipc_info", []_C_int{1, 51}},
    	{"kern.sysvmsg", []_C_int{1, 34}},
    	{"kern.sysvsem", []_C_int{1, 35}},
    	{"kern.sysvshm", []_C_int{1, 36}},
    	{"kern.timecounter.choice", []_C_int{1, 69, 4}},
    	{"kern.timecounter.hardware", []_C_int{1, 69, 3}},
    	{"kern.timecounter.tick", []_C_int{1, 69, 1}},
    	{"kern.timecounter.timestepwarnings", []_C_int{1, 69, 2}},
    	{"kern.timeout_stats", []_C_int{1, 87}},
    	{"kern.tty.tk_cancc", []_C_int{1, 44, 4}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device.h

      // Handles error when RefreshStatus sees !status.ok().
      Status HandleDeviceError();
    
      mutable mutex mu_;
      // The metadata of this XlaDevice.
      const Metadata xla_metadata_;
      // Which hardware device in the client's platform this XlaDevice controls.
      const int device_ordinal_;
      // The name/type of this XlaDevice. eg. "XLA_GPU".
      const DeviceType device_name_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/internal/fuzz/encoding.go

    				// Note that the specific value of float32(math.NaN()) can vary based on
    				// whether the architecture represents signaling NaNs using a low bit
    				// (as is common) or a high bit (as commonly implemented on MIPS
    				// hardware before around 2012). We believe that the increase in clarity
    				// from identifying "NaN" with math.NaN() is worth the slight ambiguity
    				// from a platform-dependent value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    division, the 2-by-1 guess uses an implicit uₙ = 0.
    
    Note that using a 2-by-1-digit division here does not mean calling ourselves
    recursively. Instead, we use an efficient direct hardware implementation of
    that operation.
    
    Note that because q is u/v rounded down, q·v must not exceed u: u ≥ q·v.
    If a guess q̂ is too big, it will not satisfy this test. Viewed a different way,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. src/runtime/os_linux.go

    	_AT_PAGESZ   = 6  // System physical page size
    	_AT_PLATFORM = 15 // string identifying platform
    	_AT_HWCAP    = 16 // hardware capability bit vector
    	_AT_SECURE   = 23 // secure mode boolean
    	_AT_RANDOM   = 25 // introduced in 2.6.29
    	_AT_HWCAP2   = 26 // hardware capability bit vector 2
    )
    
    var procAuxv = []byte("/proc/self/auxv\x00")
    
    var addrspace_vec [1]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    message PipelineConfig {
      // When set to True, unpacks ops with uniform quantized types into operations
      // without uniform quantized types (mostly i8 or i32). Useful when the target
      // hardware performs better with integer ops.
      // Default value: true
      optional bool unpack_quantized_types = 1;
    
      // When set to True, requantize op in the quantized fusion will merge with the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/branchelim.go

    // speculatively execute.
    // Warning: this function cannot currently detect values that represent
    // instructions the execution of which need to be guarded with CPU
    // hardware feature checks. See issue #34950.
    func canSpeculativelyExecute(b *Block) bool {
    	// don't fuse memory ops, Phi ops, divides (can panic),
    	// or anything else with side-effects
    	for _, v := range b.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. src/crypto/cipher/gcm.go

    // with the standard nonce length.
    //
    // In general, the GHASH operation performed by this implementation of GCM is not constant-time.
    // An exception is when the underlying [Block] was created by aes.NewCipher
    // on systems with hardware support for AES. See the [crypto/aes] package documentation for details.
    func NewGCM(cipher Block) (AEAD, error) {
    	return newGCMWithNonceAndTagSize(cipher, gcmStandardNonceSize, gcmTagSize)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/math/rand/v2/rand.go

    	// In terms of 32-bit halves, this is:
    	// 	x1:x0 := r.Uint64()
    	// 	0:hi, lo1:lo0 := bits.Mul64(x1:x0, 0:n)
    	// Writing out the multiplication in terms of bits.Mul32 allows
    	// using direct hardware instructions and avoiding
    	// the computations involving these zeros.
    	x := r.Uint64()
    	lo1a, lo0 := bits.Mul32(uint32(x), n)
    	hi, lo1b := bits.Mul32(uint32(x>>32), n)
    	lo1, c := bits.Add32(lo1a, lo1b, 0)
    	hi += c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/net/net_windows_test.go

    	//Transport Name:   Media disconnected
    	//
    	//Connection Name:  Bluetooth Network Connection
    	//Network Adapter:  Bluetooth Device (Personal Area Network)
    	//Physical Address: N/A
    	//Transport Name:   Hardware not present
    	//
    	//Connection Name:  VMware Network Adapter VMnet8
    	//Network Adapter:  VMware Virtual Ethernet Adapter for VMnet8
    	//Physical Address: Disabled
    	//Transport Name:   Disconnected
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top