Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for r2devices (0.34 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.True(ok)
    	checkAllocatableDevicesConsistsOf(as, devInstances, []string{"R1Device1", "R1Device2"})
    
    	// Unhealthy device becomes healthy
    	resource1Devs = []pluginapi.Device{
    		{ID: "R1Device1", Health: pluginapi.Healthy},
    		{ID: "R1Device2", Health: pluginapi.Healthy},
    		{ID: "R1Device3", Health: pluginapi.Healthy},
    	}
    	testManager.genericDeviceUpdateCallback(resourceName1, resource1Devs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        const Cluster& cluster_a, const Cluster& cluster_b) {
      DeviceSet devices = cluster_a.devices();
      devices.UnionWith(cluster_b.devices());
    
      TF_ASSIGN_OR_RETURN(
          std::optional<jit::DeviceId> maybe_chosen_device,
          MaybePickDeviceForXla(device_info_cache_, devices,
                                /*allow_mixing_unknown_and_cpu=*/false));
      if (!maybe_chosen_device.has_value()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    	return err
    }
    
    // makeDevices generates container devices for kubelet runtime v1.
    func makeDevices(opts *kubecontainer.RunContainerOptions) []*runtimeapi.Device {
    	devices := make([]*runtimeapi.Device, len(opts.Devices))
    
    	for idx := range opts.Devices {
    		device := opts.Devices[idx]
    		devices[idx] = &runtimeapi.Device{
    			HostPath:      device.PathOnHost,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      std::vector<std::unique_ptr<Device>> devices;
    
      DeviceFactory* cpu_factory = DeviceFactory::GetFactory("CPU");
      if (!cpu_factory) {
        return errors::NotFound(
            "CPU Factory not registered. Can't run EncapsulateSubgraphsPass");
      }
      TF_RETURN_IF_ERROR(cpu_factory->CreateDevices(
          session_options, "/job:localhost/replica:0/task:0", &devices));
      if (devices.empty()) {
        return errors::NotFound(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    }
    
    void ExtractOutsideCompilation::runOnOperation() {
      // Get runtime devices information from the closest parent module.
      auto module = getOperation();
      if (failed(CheckPreconditions(module))) signalPassFailure();
    
      mlir::TF::RuntimeDevices devices;
      if (failed(tensorflow::GetDevicesFromOp(module, &devices)))
        return signalPassFailure();
    
      llvm::SmallVector<mlir::tf_device::ParallelExecuteOp, 4>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/BUILD

    # builds.
    filegroup(
        name = "mobile_srcs_no_runtime",
        srcs = [
            "defs.cc",
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Target that bundles up the XLA CPU and GPU JIT devices.
    cc_library(
        name = "jit",
        visibility = [
            ":friends",
            "//learning/tfx:__subpackages__",
        ],
        deps = [
            ":xla_cpu_device",
            ":xla_cpu_jit",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        within the same symbol scope as the call and is mapped to a GraphDef node
        with the function name as the op name. Unlike a PartitionedCall which
        represents asynchronously executing a function across multiple devices, a
        LegacyCall ignores specification for ops in the attached function and
        instead executes it on the device assigned to this op.
      }];
    
      let arguments = (ins
        Variadic<TF_Tensor>:$args,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    /** Correct `inline-block` display not defined in IE 8/9. */
    audio,
    canvas,
    video {
    	display: inline-block;
    }
    
    /** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
    audio:not([controls]) {
    	display: none;
    	height: 0;
    }
    
    /** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */
    [hidden],
    template {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			for _, v := range mountedVolumes {
    				if v.VolumeName == volumeName {
    					return true, nil
    				}
    			}
    			return false, nil
    		},
    	)
    
    	if err != nil {
    		t.Fatalf("expected volume devices %s to be mounted globally", volumeName)
    	}
    }
    
    func waitForUncertainPodMount(t *testing.T, volumeName v1.UniqueVolumeName, podName types.UniquePodName, asw cache.ActualStateOfWorld) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                    newUpdater(AbstractFuture.class, Object.class, "value"));
          } catch (Exception // sneaky checked exception
              | Error atomicReferenceFieldUpdaterFailure) {
            // Some Android 5.0.x Samsung devices have bugs in JDK reflection APIs that cause
            // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top