Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 198 for hardware (0.2 sec)

  1. doc/next/7-ports.md

    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    <!-- go.dev/issue/61476, CL 541135 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

          return std::string("");
        }
        std::string concat_inference_device_type_string =
            ignore_inference_type_
                ? device_type.value().hardware
                : absl::StrCat(
                      device_type.value().hardware, "_",
                      GetInferenceString(device_type.value().inference_type));
        return concat_inference_device_type_string;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_index.yaml

            will include the application of HPC techniques, along with integration of
            search algorithms like reinforcement learning. MLIR aims to reduce the
            cost to bring up new hardware, and improve usability for existing
            TensorFlow users.
    
        - code_block: |
            <pre class = "prettyprint">
            // Syntactically similar to LLVM:
            func @testFunction(%arg0: i32) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_REMOVEDEVICE_GLOBAL         DI_REMOVEDEVICE = 0x00000001 // Make this change in all hardware profiles. Remove information about the device from the registry.
    	DI_REMOVEDEVICE_CONFIGSPECIFIC DI_REMOVEDEVICE = 0x00000002 // Make this change to only the hardware profile specified by HwProfile. this flag only applies to root-enumerated devices. When Windows removes the device from the last hardware profile in which it was configured, Windows performs a global removal.
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  5. src/net/mac.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package net
    
    const hexDigit = "0123456789abcdef"
    
    // A HardwareAddr represents a physical hardware address.
    type HardwareAddr []byte
    
    func (a HardwareAddr) String() string {
    	if len(a) == 0 {
    		return ""
    	}
    	buf := make([]byte, 0, len(a)*3-1)
    	for i, b := range a {
    		if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

         * in the current build for a number of reasons:
         *
         * <ul>
         *     <li>reused work could have happened on a remote machine with different hardware capabilities,</li>
         *     <li>there might have been more or less load on the machine producing the reused work,</li>
         *     <li>the work reused might have been executed incrementally,</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. docs/distributed/DECOMMISSION.md

    # Decommissioning
    
    Decommissiong is a mechanism in MinIO to drain older pools (usually with old hardware) and migrate the content from such pools to a newer pools (usually better hardware). Decommissioning spreads the data across all pools - for example, if you decommission `pool1`, all the data from `pool1` spreads across `pool2` and `pool3`.
    
    ## Features
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  8. src/runtime/memclr_amd64.s

    	MOVOU	X15, 240(DI)
    	SUBQ	$256, BX
    	ADDQ	$256, DI
    	CMPQ	BX, $256
    	JAE	loop
    	JMP	tail
    #endif
    
    loop_preheader_avx2:
    	VPXOR X0, X0, X0
    	// For smaller sizes MOVNTDQ may be faster or slower depending on hardware.
    	// For larger sizes it is always faster, even on dual Xeons with 30M cache.
    	// TODO take into account actual LLC size. E. g. glibc uses LLC size/2.
    	CMPQ    BX, $0x2000000
    	JAE	loop_preheader_avx2_huge
    
    loop_avx2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:52:34 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. SECURITY.md

    TensorFlow in a multitenant design mixes the risks described above with the
    inherent ones from multitenant configurations. The primary areas of concern are
    tenant isolation, resource allocation, model sharing and hardware attacks.
    
    ### Tenant isolation
    
    Since any tenants or users providing models, graphs or checkpoints can execute
    code in context of the TensorFlow service, it is important to design isolation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/version_windows.go

    // license that can be found in the LICENSE file.
    
    package windows
    
    import (
    	"errors"
    	"sync"
    	"syscall"
    	"unsafe"
    )
    
    // https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/ns-wdm-_osversioninfow
    type _OSVERSIONINFOW struct {
    	osVersionInfoSize uint32
    	majorVersion      uint32
    	minorVersion      uint32
    	buildNumber       uint32
    	platformId        uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top