Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for hardware (0.16 sec)

  1. guava/src/com/google/common/hash/LittleEndianByteArray.java

            // The hardware is big-endian, so we need to reverse the order of the bytes.
            return Long.reverseBytes(bigEndian);
          }
    
          @Override
          public void putLongLittleEndian(byte[] array, int offset, long value) {
            // Reverse the order of the bytes before storing, since we're on big-endian hardware.
            long littleEndianValue = Long.reverseBytes(value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/compute_cost.cc

        auto interface_name = GetInterFaceName(func);
        if (!interface_name.has_value()) continue;
    
        auto target = GetTargetAnnotation(func);
        if (!target.has_value()) {
          func.emitError("we cannot get hardware info for this function.");
          signalPassFailure();
        }
    
        float total_cost = GetCostForFunc(&func, *target);
        OpBuilder builder(func);
        UpdateCost(func, total_cost, &builder);
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. test/nilcheck.go

    	_ = *empty1p    // ERROR "nil check"
    }
    
    func fx10k() *[10000]int
    
    var b bool
    
    func f3(x *[10000]int) {
    	// Using a huge type and huge offsets so the compiler
    	// does not expect the memory hardware to fault.
    	_ = x[9999] // ERROR "nil check"
    
    	for {
    		if x[9999] != 0 { // ERROR "nil check"
    			break
    		}
    	}
    
    	x = fx10k()
    	_ = x[9999] // ERROR "nil check"
    	if b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 18:41:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/gpu_hardware.cc

      auto from_type = from->GetTypeId();
      auto to_type = GetTypeId();
      if (from_type == to_type) return 0.0f;
    
      // TODO(renjieliu): Implement a better version for different hardware cases.
      return buffer_size * kCrossHardwareTransferPerByteCost / 8.0 +
             kCrossHardwareTransferFixedCost;
    }
    
    namespace {
    // GPU
    constexpr float kGPUArithmeticUnitCost = 0.2;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/policy_options.go

    		}
    		// Not compatible with topology when number of sockets are more than number of NUMA nodes.
    		if topology.NumSockets > topology.NumNUMANodes {
    			return fmt.Errorf("Align by socket is not compatible with hardware where number of sockets are more than number of NUMA")
    		}
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. src/runtime/signal_darwin_amd64.go

    			// SIGTRAP on something other than INT 3.
    			c.set_sigcode(_SI_USER)
    		}
    
    	case _SIGSEGV:
    		// x86-64 has 48-bit virtual addresses. The top 16 bits must echo bit 47.
    		// The hardware delivers a different kind of fault for a malformed address
    		// than it does for an attempt to access a valid but unmapped address.
    		// OS X 10.9.2 mishandles the malformed address case, making it look like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. docs/minio-limits.md

    > NOTE:  While MinIO does not implement an upper boundary on buckets, your cluster's hardware has natural limits that depend on the workload and its scaling patterns. We strongly recommend [MinIO SUBNET](https://min.io/pricing) for architecture and sizing guidance for your production use case.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/math/sqrt.go

    // is preserved.
    // ====================================================
    //
    // __ieee754_sqrt(x)
    // Return correctly rounded sqrt.
    //           -----------------------------------------
    //           | Use the hardware sqrt if you have one |
    //           -----------------------------------------
    // Method:
    //   Bit by bit method using integer arithmetic. (Slow, but portable)
    //   1. Normalization
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 15 17:07:57 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. src/runtime/softfloat64_test.go

    }
    
    // float64 -sw-> int64 -hw-> float64
    func toint64sw(f float64) float64 {
    	i, ok := F64toint(math.Float64bits(f))
    	if !ok {
    		// There's no right answer for out of range.
    		// Match the hardware to pass the test.
    		i = int64(f)
    	}
    	return float64(i)
    }
    
    // float64 -hw-> int64 -sw-> float64
    func fromint64sw(f float64) float64 {
    	return math.Float64frombits(Fintto64(int64(f)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    	if len(name) >= IFNAMSIZ {
    		return nil, EINVAL
    	}
    
    	var ifr ifreq
    	copy(ifr.Ifrn[:], name)
    
    	return &Ifreq{raw: ifr}, nil
    }
    
    // TODO(mdlayher): get/set methods for hardware address sockaddr, char array, etc.
    
    // Name returns the interface name associated with the Ifreq.
    func (ifr *Ifreq) Name() string {
    	return ByteSliceToString(ifr.raw.Ifrn[:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top