Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for stream_executor_ (0.47 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

    #include "xla/stream_executor/executor_cache.h"
    #include "xla/stream_executor/platform.h"
    #include "xla/stream_executor/stream_common.h"
    #include "xla/stream_executor/stream_executor.h"
    #include "tsl/platform/statusor.h"
    
    namespace stream_executor {
    
    // Plugin initialization function that a device plugin
    // must define.
    typedef void (*SEInitPluginFn)(SE_PlatformRegistrationParams* const,
                                   TF_Status* const);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_context.h

      bool ClearStats() override;
    
     private:
      // The stream executor of the device.
      se::StreamExecutor* stream_executor_;
    };
    
    // Helper class for managing data transfers between host and XLA devices.
    class XlaDeviceContext : public DeviceContext {
     public:
      explicit XlaDeviceContext(
          std::shared_ptr<se::Stream> compute_stream,
          std::shared_ptr<se::Stream> host_to_device_stream,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_host_send_recv_device_context_test.cc

    #include "tensorflow/compiler/tf2xla/shape_util.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/stream_executor/device_memory.h"
    #include "xla/stream_executor/platform_manager.h"
    #include "xla/stream_executor/stream.h"
    #include "xla/stream_executor/stream_executor.h"
    #include "tensorflow/core/framework/tensor_testutil.h"
    #include "tsl/lib/core/status_test_util.h"
    
    namespace tensorflow {
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/stream_executor/BUILD

    )
    
    cc_library(
        name = "stream_executor_hdrs",
        hdrs = ["stream_executor.h"],
        visibility = ["//tensorflow:internal"],
        deps = [
            "//tensorflow/c:c_api_macros_hdrs",
            "//tensorflow/c:tf_status_headers",
        ],
    )
    
    cc_library(
        name = "stream_executor",
        srcs = ["stream_executor.cc"],
        hdrs = ["stream_executor.h"],
        visibility = ["//tensorflow:internal"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 00:27:07 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/stream_executor/test/test_pluggable_device.cc

    #include "tensorflow/c/experimental/stream_executor/stream_executor.h"
    #include "tensorflow/c/experimental/stream_executor/stream_executor_test_util.h"
    
    extern "C" {
    
    void SE_InitPlugin(SE_PlatformRegistrationParams* const params,
                       TF_Status* const status) {
      stream_executor::test_util::PopulateDefaultPlatformRegistrationParams(params);
    }
    
    void TF_InitKernel() {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 18 04:53:02 UTC 2021
    - 1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/stream_executor_test_util.h

    #ifndef TENSORFLOW_C_EXPERIMENTAL_STREAM_EXECUTOR_STREAM_EXECUTOR_TEST_UTIL_H_
    #define TENSORFLOW_C_EXPERIMENTAL_STREAM_EXECUTOR_STREAM_EXECUTOR_TEST_UTIL_H_
    
    #include "tensorflow/c/experimental/stream_executor/stream_executor.h"
    
    struct SP_Stream_st {
      explicit SP_Stream_st(int id) : stream_id(id) {}
      int stream_id;
    };
    
    struct SP_Event_st {
      explicit SP_Event_st(int id) : event_id(id) {}
      int event_id;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 17 01:32:30 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/stream_executor/stream_executor_test_util.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/c/experimental/stream_executor/stream_executor_test_util.h"
    
    #include "tensorflow/c/experimental/stream_executor/stream_executor.h"
    
    namespace stream_executor {
    namespace test_util {
    
    /*** Functions for creating SP_StreamExecutor ***/
    void Allocate(const SP_Device* const device, uint64_t size,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 21 20:09:00 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration.cc

    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "xla/client/client_library.h"
    #include "xla/client/compile_only_client.h"
    #include "xla/stream_executor/host/host_platform_id.h"
    #include "xla/stream_executor/platform_manager.h"
    #include "tensorflow/core/common_runtime/graph_constructor.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/graph.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "xla/layout.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    #include "xla/shape.h"
    #include "xla/stream_executor/tpu/c_api_conversions.h"
    #include "xla/stream_executor/tpu/tpu_api.h"
    #include "xla/translate/mhlo_to_hlo/type_to_shape.h"
    
    namespace mlir {
    
    static FailureOr<std::vector<int64_t>> GetTPUInfeedLayoutFromAPI(
        RankedTensorType t) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_host_send_device_context.h

    #ifndef TENSORFLOW_COMPILER_JIT_XLA_HOST_SEND_DEVICE_CONTEXT_H_
    #define TENSORFLOW_COMPILER_JIT_XLA_HOST_SEND_DEVICE_CONTEXT_H_
    
    #include "xla/shape.h"
    #include "xla/stream_executor/device_memory.h"
    #include "xla/stream_executor/stream.h"
    #include "tensorflow/core/framework/device_base.h"
    #include "tfrt/concurrency/async_value_ref.h"  // from @tf_runtime
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top