Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 198 for hardware (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/jit/xla_device.cc

        iter->Unref();
      }
    }
    
    absl::StatusOr<xla::LocalClient*> XlaDevice::GetOrCreateClient() const {
      // We lazily create the client because the platform commits to the
      // details of the host hardware when the client is created, so we
      // don't want to do it until we get a chance to hook the platform up
      // to a simulator.
    
      xla::LocalClientOptions options;
      options.set_platform(platform_)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/stream_executor/stream_executor.h

      int32_t ordinal;  // device index
    
      // Device vendor can store handle to their device representation
      // here.
      void* device_handle;
    
      // [Optional]
      // Device hardware name. Used for printing.
      // Must be null-terminated.
      const char* hardware_name;
    
      // [Optional]
      // Device vendor name. Used for printing.
      // Must be null-terminated.
      const char* device_vendor;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{165, "EOWNERDEAD", "owner died"},
    	{166, "ENOTRECOVERABLE", "state not recoverable"},
    	{167, "ERFKILL", "operation not possible due to RF-kill"},
    	{168, "EHWPOISON", "memory page has hardware error"},
    	{1133, "EDQUOT", "disk quota exceeded"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top