Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for xla_device (0.14 sec)

  1. tensorflow/compiler/jit/xla_cpu_device.cc

    #include "tensorflow/compiler/jit/kernels/xla_ops.h"
    #include "tensorflow/compiler/jit/xla_compile_on_demand_op.h"
    #include "tensorflow/compiler/jit/xla_device.h"
    #include "tensorflow/compiler/jit/xla_device_ops.h"
    #include "tensorflow/compiler/tf2xla/layout_util.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/stream_executor/platform_manager.h"
    #include "tensorflow/core/common_runtime/device_factory.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_gpu_device.cc

    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/kernels/xla_ops.h"
    #include "tensorflow/compiler/jit/xla_device.h"
    #include "tensorflow/compiler/jit/xla_device_ops.h"
    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "tensorflow/compiler/tf2xla/layout_util.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/stream_executor/gpu/gpu_init.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_platform_info.h

    #include <memory>
    #include <optional>
    #include <string>
    
    #include "tensorflow/compiler/jit/device_compiler.h"
    #include "tensorflow/compiler/jit/pjrt_base_device.h"
    #include "tensorflow/compiler/jit/xla_device.h"
    #include "xla/stream_executor/integrations/tf_allocator_adapter.h"
    #include "tensorflow/core/framework/op_kernel.h"
    
    namespace tensorflow {
    
    // Holds some information about the platform on which an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/kernels/xla_ops.h

    #ifndef TENSORFLOW_COMPILER_JIT_KERNELS_XLA_OPS_H_
    #define TENSORFLOW_COMPILER_JIT_KERNELS_XLA_OPS_H_
    
    #include <atomic>
    
    #include "tensorflow/compiler/jit/device_compiler.h"
    #include "tensorflow/compiler/jit/xla_device.h"
    #include "tensorflow/compiler/jit/xla_launch_util.h"
    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "xla/stream_executor/integrations/tf_allocator_adapter.h"
    #include "tensorflow/core/framework/allocator.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/pjrt_base_device.h

    #include "tensorflow/core/common_runtime/local_device.h"
    #include "tensorflow/core/framework/device_base.h"
    
    namespace tensorflow {
    
    // tensorflow::PjRtBaseDevice replaces the deprecated tensorflow::XlaDevice.
    // This accelerator agnostic device is mainly used to store metadata.
    class PjRtBaseDevice : public LocalDevice {
     public:
      // Stores metadata about the PjRtBaseDevice.
      class Metadata {
       public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_tensor.h

    #include "tensorflow/core/framework/device_base.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/platform/mutex.h"
    
    namespace tensorflow {
    
    // The implementation of a Tensor for an XlaDevice. All device tensors are
    // actually one of these.
    //
    // To distinguish between "normal" device tensors and XlaTensors, the raw
    // pointer data stored in the TensorBuffer is a tagged pointer.
    class XlaTensor {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top