xpu_context.h 2.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#pragma once

17 18
#ifdef PADDLE_WITH_XPU

W
Wilber 已提交
19
#include <memory>
20

21
#include "paddle/phi/backends/xpu/forwards.h"
22
#include "paddle/phi/backends/xpu/xpu_header.h"
23
#include "paddle/phi/backends/xpu/xpu_info.h"
24 25
#include "paddle/phi/common/place.h"
#include "paddle/phi/core/device_context.h"
W
Wilber 已提交
26

27 28 29 30
namespace Eigen {
struct DefaultDevice;
}  // namespace Eigen

W
Wilber 已提交
31
namespace xpu = baidu::xpu::api;
32

33
namespace phi {
34

35 36
class XPUContext : public DeviceContext,
                   public TypeInfoTraits<DeviceContext, XPUContext> {
W
Wilber 已提交
37 38 39 40 41 42 43
 public:
  XPUContext();

  explicit XPUContext(const XPUPlace&);

  virtual ~XPUContext();

W
Wilber 已提交
44
  const Place& GetPlace() const override;
W
Wilber 已提交
45 46 47 48 49

  backends::xpu::XPUVersion xpu_version() const;

  xpu::Context* x_context() const;

50 51 52 53
  // For multi-thread dataloader,
  // check if the current thread is Dataloader thread
  bool IsDataloader() const;

W
Wilber 已提交
54 55
  // Return bkcl context.
  xpu::BKCLContext_t bkcl_context() const;
W
Wilber 已提交
56
  void SetBkclContext(xpu::BKCLContext_t context);
57
  void CreateStream();
W
Wilber 已提交
58

C
csy0225 已提交
59 60 61
  // For share external stream.
  void SetStream(void* stream);

W
Wilber 已提交
62 63 64 65
  // Wait for all operations completion in the stream.
  void Wait() const override;

 public:
W
Wilber 已提交
66 67 68 69
  // NOTE: DeviceContext hold resources. Used in training scenarios.
  // The interface used by the training scene, DeviceContext will initialize
  // all resources and delete them when destructing.
  void Init();
W
Wilber 已提交
70

W
Wilber 已提交
71 72 73 74 75
 public:
  // NOTE: External users manage resources. Used in inference scenarios.
  // The Set interface is for inference only, DeviceContext will mark the
  // resource as external, and will not delete any resource when destructing.
  void SetXContext(xpu::Context*);
W
Wilber 已提交
76

W
Wilber 已提交
77
  void SetL3Cache(int l3_size = 14155776);
W
Wilber 已提交
78

C
csy0225 已提交
79 80 81 82 83 84
  void SetXpuVersion(int version);

  void SetRuntimeVersion(int runtime_version);

  void SetDriverVersion(int driver_version);

85 86
  Eigen::DefaultDevice* eigen_device() const { return nullptr; }

87 88
  XPUStream stream() const;

89 90
  static const char* name() { return "XPUContext"; }

W
Wilber 已提交
91
 private:
W
Wilber 已提交
92 93
  struct Impl;
  std::unique_ptr<Impl> impl_;
W
Wilber 已提交
94 95
};

96 97 98 99 100 101 102 103
// KPS (Kernel PrimitiveS API) needs to exist as a kind of backend,
// because we want to implement a KPS-based kernel and make it run
// on GPU and XPU at the same time, so we need KPSContext when registering
// KPS Kernel. Note: XPU and GPU cannot be compiled at the same time!
#if PADDLE_WITH_XPU_KP
using KPSContext = XPUContext;
#endif

104
}  // namespace phi
105 106

#endif