Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for r2devices (0.26 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/volume/util/util_test.go

    		t.Run(test.name, func(t *testing.T) {
    			mounts, devices, contexts := GetPodVolumeNames(test.pod)
    			if !mounts.Equal(test.expectedMounts) {
    				t.Errorf("Expected mounts: %q, got %q", sets.List[string](mounts), sets.List[string](test.expectedMounts))
    			}
    			if !devices.Equal(test.expectedDevices) {
    				t.Errorf("Expected devices: %q, got %q", sets.List[string](devices), sets.List[string](test.expectedDevices))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	if dswp.podPreviouslyProcessed(uniquePodName) {
    		return
    	}
    
    	allVolumesAdded := true
    	mounts, devices, seLinuxContainerContexts := util.GetPodVolumeNames(pod)
    
    	// Process volume spec for each volume defined in pod
    	for _, podVolume := range pod.Spec.Volumes {
    		if !mounts.Has(podVolume.Name) && !devices.Has(podVolume.Name) {
    			// Volume is not used in the pod, ignore it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_linux_test.go

    					t.Fatalf("expected error message `%s` but got `%v`", tc.expectedErrMsg, err)
    				}
    				return
    			}
    			// otherwise validate the devices
    			if err != nil {
    				t.Fatal(err)
    			}
    			assert.Equal(t, tc.expectedDevices, blkVolumes, "devices of container %+v", tc.container)
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

    // product of possible devices and inference datatypes. For example, we might
    // raise a chunk of sequential operations from a block all having attributes
    // `{ tac.device = "GPU", tac.inference_type = "FLOAT"}` to a function
    // with the matching attributes. Assumed is that device type "CPU"
    // is the only device that is allowed to call other devices. I.e. ancestors of a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/volume_manager.go

    // getExpectedVolumes returns a list of volumes that must be mounted in order to
    // consider the volume setup step for this pod satisfied.
    func getExpectedVolumes(pod *v1.Pod) []string {
    	mounts, devices, _ := util.GetPodVolumeNames(pod)
    	return mounts.Union(devices).UnsortedList()
    }
    
    // getExtraSupplementalGid returns the value of an extra supplemental GID as
    // defined by an annotation on a volume and a boolean indicating whether the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/func_with_dead_ops.mlir

    module attributes {tf.devices = {"/job:tpu_host_worker/replica:0/task:0/device:CPU:0", "/job:tpu_host_worker/replica:0/task:0/device:TPU:0", "/job:tpu_host_worker/replica:0/task:0/device:TPU:1", "/job:tpu_host_worker/replica:0/task:0/device:TPU_SYSTEM:0", "/job:tpu_host_worker/replica:0/task:1/device:CPU:0", "/job:tpu_host_worker/replica:0/task:1/device:TPU:0", "/job:tpu_host_worker/replica:0/task:1/device:TPU:1", "/job:tpu_host_worker/replica:0/task:1/device:TPU_SYSTEM:0", "/job:tpu_host_wor...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager_linux.go

    	devOpts, err := cm.deviceManager.GetDeviceRunContainerOptions(pod, container)
    	if err != nil {
    		return nil, err
    	} else if devOpts == nil {
    		return opts, nil
    	}
    	opts.Devices = append(opts.Devices, devOpts.Devices...)
    	opts.Mounts = append(opts.Mounts, devOpts.Mounts...)
    	opts.Envs = append(opts.Envs, devOpts.Envs...)
    	opts.Annotations = append(opts.Annotations, devOpts.Annotations...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api.cc

      }
      std::vector<std::unique_ptr<tensorflow::Device>> devices;
      status->status = tensorflow::DeviceFactory::AddDevices(
          opts->session_options.options, "/job:localhost/replica:0/task:0",
          &devices);
      if (!status->status.ok()) return nullptr;
      std::unique_ptr<tensorflow::DeviceMgr> device_mgr(
          new tensorflow::DynamicDeviceMgr(std::move(devices)));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // loop that iterates the dataset and calls the reduction function.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDecomposeReduceDatasetPass();
    
    // Create a pass that convert ops that copy tensors between devices, e.g.
    // tf.Identity.
    std::unique_ptr<OperationPass<mlir::func::FuncOp>>
    CreateTensorDeviceCopyConversionPass();
    
    // Returns a pass that folds tf.BroadcastTo nodes with subsequent nodes if they
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top