Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 805 for Devices (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<mlir::ModuleOp>> CreateCrossHostTransferPass();
    
    // Creates a pass that adds the device attribute to every tf.Const op based on
    // the device attribute of the operations that read its result. If the result of
    // a tf.Const op is read by operations placed on multiple devices, then the pass
    // will replicate the tf.Const op once for each device.
    std::unique_ptr<OperationPass<ModuleOp>> CreateConstantOpDeviceAssignmentPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_linux.go

    	// just try to fetch device runtime information from cached state here
    	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...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util_test.cc

        auto device_type = DeviceType(DEVICE_XLA_CPU);
        rollout_config.AllowForDeviceInXlaLaunch(device_type);
        rollout_config.AllowForDeviceInXlaCompileOnDemand(device_type);
    
        auto jit_device_type = DeviceType(DEVICE_CPU_XLA_JIT);
        auto device =
            DeviceFactory::NewDevice(device_type.type_string(), SessionOptions(),
                                     "/job:localhost/replica:0/task:0");
        device_ = device.get();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_device.cc

        DeviceBase* device, const XlaDevice::Metadata** metadata) {
      *metadata = nullptr;
      XlaDevice* xla_device = dynamic_cast<XlaDevice*>(device->UnderlyingDevice());
      if (xla_device == nullptr) {
        return errors::Internal(
            "Cannot get XLA metadata from non-XLA device \"", device->name(),
            "\". GetMetadata must only be called on an XLA device. Either an "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

          }) {device = "/job:worker/replica:0/task:0/device:CPU:0"} : () -> (tensor<!tf_type.string>, tensor<3x!tf_type.string>)
          "tf_device.launch"() ( {
            "tf.TPUCompileSucceededAssert"(%0#0) : (tensor<!tf_type.string>) -> ()
            tf_device.return
          }) {device = "/job:worker/replica:0/task:0/device:CPU:0"} : () -> ()
          %1 = "tf_device.launch"() ( {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device_context.cc

                                                  Device* device,
                                                  Tensor* output_tensor,
                                                  StatusCallback done) const {
      done(errors::Unimplemented("XLA->XLA same-device copies not implemented."));
    }
    
    void XlaDeviceContext::CopyCPUTensorToDevice(const Tensor* cpu_tensor,
                                                 Device* device,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

     protected:
      void SetUp() override {
        // This is needed to register the XLA_* devices.
        CHECK(DeviceFactory::AddDevices(
                  SessionOptions(), "/job:localhost/replica:0/task:0", &devices_)
                  .ok());
      }
    
     private:
      std::vector<std::unique_ptr<Device>> devices_;
    };
    
    using ::tensorflow::testing::FindNodeByName;
    using ::tensorflow::testing::matchers::Attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime.go

    	Envs []EnvVar
    	// The mounts for the containers.
    	Mounts []Mount
    	// The host devices mapped into the containers.
    	Devices []DeviceInfo
    	// The CDI devices for the container
    	CDIDevices []CDIDevice
    	// The annotations for the container
    	// These annotations are generated by other components (i.e.,
    	// not users). Currently, only device plugins populate the annotations.
    	Annotations []Annotation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

    }
    
    /* Resources may be merged with an execute op when they are on its device or a
     * `COMPOSITE`. Note that a `COMPOSITE` represents a set of devices, they
     * are typically associated with packed variables. Presently, we assume this
     * set spans all the devices. So, a variable on a `COMPOSITE` will have a local
     * instance on the execute op's device.
     */
    bool IsResourceMergeable(Attribute& resource_attr, Attribute& device_attr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

     public:
      void SetUp() override {
        SessionOptions session_options;
        std::vector<std::unique_ptr<Device>> devices;
        TF_CHECK_OK(DeviceFactory::AddDevices(
            session_options, "/job:localhost/replica:0/task:0", &devices));
        device_mgr_ = std::make_unique<StaticDeviceMgr>(std::move(devices));
      }
    
      Status ExtractOutsideCompilationTest(
          const string &xla_cluster_attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
Back to top