Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,025 for Devices (0.67 sec)

  1. cmd/storage-errors.go

    // verification is empty or invalid.
    var errBitrotHashAlgoInvalid = StorageErr("bit-rot hash algorithm is invalid")
    
    // errCrossDeviceLink - rename across devices not allowed.
    var errCrossDeviceLink = StorageErr("Rename across devices not allowed, please fix your backend configuration")
    
    // errLessData - returned when less data available than what was requested.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.h

            int_attr.getSplatValue<APInt>() == raw_value)
          return true;
      }
    
      return false;
    }
    
    // Returns true if `op` is placed on GPU device, and false if it's on other
    // devices or the device is not specified.
    bool IsOnGpuDevice(mlir::Operation *op);
    
    // Wrappers for CopyDeviceAndUnderscoredAttributes
    void CopyDeviceAndUnderscoredAttributesAdaptor(mlir::OpResult src,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.h

    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    // Run all the passes involved in transforming the graph before execution so
    // that it is suitable for targeting devices when called with the TF 2 Function
    // API. Users that need clustering with the Session API should use the v1 Bridge
    // API. These transformations take as input a Tensorflow Graph as an MLIR Module
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/internal/testenv/testenv_test.go

    		case "ios":
    			if isCorelliumBuilder(b) {
    				// The corellium environment is self-hosting, so it should be able
    				// to build even though real "ios" devices can't exec.
    			} else {
    				// The usual iOS sandbox does not allow the app to start another
    				// process. If we add builders on stock iOS devices, they presumably
    				// will not be able to exec, so we may as well allow that now.
    				t.Logf("HasGoBuild is false on %s", b)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 23:12:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    		// enough (4.11+), we can read the arm64 registers directly which'll
    		// trap into the kernel and then return back to userspace.
    		//
    		// But on older kernels, such as Linux 4.4.180 as used on many Synology
    		// devices, calling readARM64Registers (specifically getisar0) will
    		// cause a SIGILL and we'll die. So for older kernels, parse /proc/cpuinfo
    		// instead.
    		//
    		// See golang/go#57336.
    		if linuxKernelCanEmulateCPUID() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/end-to-end-tpu-reshard-variables.mlir

    // CHECK-LABEL: module
    // CHECK: tf_device.replicate
    // CHECK:   TPUReshardVariables
    // CHECK:   TPUExecuteAndUpdateVariables
    // CHECK: tf_device.replicate
    // CHECK:   TPUReshardVariables
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tensor_device_copy_conversion.cc

              TensorDeviceCopyConversionPass> {
      void runOnOperation() override;
    };
    
    // Folds tf.IdentityOp and tf.IdentityNOp if op device and the argument devices
    // from the defining ops match.
    void TensorDeviceCopyConversionPass::runOnOperation() {
      func::FuncOp func_op = getOperation();
    
      auto should_fold_op_func = [&func_op](const Value &arg,
                                            const StringAttr &op_device) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_util_test.cc

    }
    
    TEST(PickDeviceForXla, MoreSpecificDevice) {
      CheckPickDeviceResult(kCPU0, false, {kCPU0, kCPU0Partial});
      CheckPickDeviceResult(kGPU0, false, {kGPU0, kGPU0Partial});
      // Unknown devices do not support merging of full and partial specifications.
      CheckPickDeviceHasError(false, {kXPU1, kXPU0Partial});
    }
    
    TEST(PickDeviceForXla, DeviceOrder) {
      CheckPickDeviceResult(kGPU0, false, {kGPU0, kCPU0});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pkg/volume/csi/expander.go

    		secrets:           nodeExpandSecrets,
    	}
    
    	if !fsVolume {
    		// for block volumes the volumePath in CSI NodeExpandvolumeRequest is
    		// basically same as DevicePath because block devices are not mounted and hence
    		// DeviceMountPath does not get populated in resizeOptions.DeviceMountPath
    		opts.volumePath = resizeOptions.DevicePath
    		opts.fsType = fsTypeBlockName
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/volume/util/hostutil/hostutil_windows.go

    func NewHostUtil() *HostUtil {
    	return &HostUtil{}
    }
    
    // GetDeviceNameFromMount given a mnt point, find the device
    func (hu *HostUtil) GetDeviceNameFromMount(mounter mount.Interface, mountPath, pluginMountDir string) (string, error) {
    	return getDeviceNameFromMount(mounter, mountPath, pluginMountDir)
    }
    
    // getDeviceNameFromMount find the device(drive) name in which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top