Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 264 for r2devices (0.23 sec)

  1. tensorflow/c/eager/c_api_experimental.cc

      // in an initialized context.
      for (auto d = devices.begin(); d != devices.end();) {
        if (absl::StrContains(d->get()->name(), "CPU:0")) {
          d = devices.erase(d);
        } else {
          ++d;
        }
      }
    
      status->status = tensorflow::unwrap(ctx)->AddDevices(std::move(devices));
    }
    
    void TFE_InsertConfigKeyValue(TFE_Context* ctx, const char* key,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/types.go

    }
    
    // ContainerInfo contains information required by the runtime to consume prepared resources.
    type ContainerInfo struct {
    	// The Annotations for the container
    	Annotations []kubecontainer.Annotation
    	// CDI Devices for the container
    	CDIDevices []kubecontainer.CDIDevice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kubelet/cm/container_manager.go

    	// UpdateQOSCgroups performs housekeeping updates to ensure that the top
    	// level QoS containers have their desired state in a thread-safe way
    	UpdateQOSCgroups() error
    
    	// GetResources returns RunContainerOptions with devices, mounts, and env fields populated for
    	// extended resources required by container.
    	GetResources(pod *v1.Pod, container *v1.Container) (*kubecontainer.RunContainerOptions, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_bridge_v1/end_to_end.mlir

    // RUN: tf-opt %s -tf-replicated-clustering-bridge-v1 | FileCheck %s
    
    module attributes {tf.devices = ["/job:localhost/replica:0/task:0/device:CPU:0", "/job:localhost/replica:0/task:0/device:TPU:0", "/job:localhost/replica:0/task:0/device:TPU:1", "/job:localhost/replica:0/task:0/device:TPU_SYSTEM:0"], tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 296 : i32}} {
      func.func @main() {
    // CHECK: arith.constant
    // CHECK: TPUCompile
    // CHECK: TPUExecute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. 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)
  7. internal/disk/directio_unsupported.go

    // so there is no risk of polluting the entire cache with data accessed once.
    // Another goal of DirectIO is to minimize the mutation of data by the kernel
    // before issuing IO to underlying devices. ZFS users often enable features like
    // compression and checksumming which currently necessitates mutating data in
    // the kernel.
    //
    // DirectIO semantics for a filesystem like ZFS would be quite different than
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/jit/test_util.h

        options.flib_def = &library;
        options.graph = graph;
        return options;
      }
    
      FunctionLibraryDefinition library;
      SessionOptions session_options;
    };
    
    // Helps set up devices for unit tests.
    class DeviceSetup {
     public:
      void AddDevicesAndSetUp(
          const std::vector<std::string>& device_names,
          const std::optional<FunctionDef>& fdef = std::nullopt);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. 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)
Back to top