xpu_info.cc 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/* Copyright (c) 2020 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. */
11
#include "paddle/fluid/platform/device/xpu/xpu_info.h"
12 13 14 15 16

#include <algorithm>
#include <cstdlib>
#include <string>
#include "gflags/gflags.h"
W
Wilber 已提交
17

18
#include "paddle/fluid/platform/device/device_wrapper.h"
19
#include "paddle/fluid/platform/device/xpu/enforce_xpu.h"
20
#include "paddle/fluid/platform/device/xpu/xpu_header.h"
21 22
#include "paddle/fluid/platform/device_context.h"
#include "paddle/fluid/platform/place.h"
W
Wilber 已提交
23

24
#include "paddle/phi/backends/xpu/xpu_info.h"
25 26 27 28

namespace paddle {
namespace platform {

29 30 31
/**************************** Version Management **************************/

//! Get the version of XPU Driver
32
int GetDriverVersion() { return phi::backends::xpu::GetDriverVersion(); }
33 34

//! Get the version of XPU Runtime
35
int GetRuntimeVersion() { return phi::backends::xpu::GetRuntimeVersion(); }
36 37 38

/**************************** Device Management **************************/

39
int GetXPUDeviceCount() { return phi::backends::xpu::GetXPUDeviceCount(); }
40 41

int GetXPUCurrentDeviceId() {
42
  return phi::backends::xpu::GetXPUCurrentDeviceId();
43 44
}

45
void SetXPUDeviceId(int id) { phi::backends::xpu::SetXPUDeviceId(id); }
46

47 48 49
//! Get a list of device ids from environment variable or use all.
std::vector<int> GetXPUSelectedDevices() {
  // use user specified XPUs in single-node multi-process mode.
50
  return phi::backends::xpu::GetXPUSelectedDevices();
51 52
}

53 54
/**************************** Memory Management **************************/

55 56
void MemcpySyncH2D(void* dst, const void* src, size_t count,
                   const platform::XPUPlace& dst_place) {
Q
QingshuChen 已提交
57 58 59 60
  platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance();
  auto* dev_ctx = pool.GetByPlace(dst_place);
  dev_ctx->Wait();
  phi::backends::xpu::MemcpySyncH2D(dst, src, count, dst_place, *dev_ctx);
61 62
}

63 64 65 66 67
void MemcpySyncD2H(void* dst, const void* src, size_t count,
                   const platform::XPUPlace& src_place) {
  platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance();
  auto* dev_ctx = pool.GetByPlace(src_place);
  dev_ctx->Wait();
68
  phi::backends::xpu::MemcpySyncD2H(dst, src, count, src_place, *dev_ctx);
69 70
}

71 72 73 74
// if src.device == dst.device and you need sync , after call this function,
// need to call xpu_wait()
void MemcpySyncD2D(void* dst, const platform::XPUPlace& dst_place,
                   const void* src, const platform::XPUPlace& src_place,
75
                   size_t count) {
W
Wilber 已提交
76 77
  platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance();
  auto* dev_ctx = pool.GetByPlace(src_place);
78 79
  phi::backends::xpu::MemcpySyncD2D(dst, dst_place, src, src_place, count,
                                    *dev_ctx);
80 81
}

82 83
/**************************** Others **************************/

84 85
phi::backends::xpu::XPUVersion get_xpu_version(int dev_id) {
  return phi::backends::xpu::get_xpu_version(dev_id);
Q
QingshuChen 已提交
86 87
}

88 89
}  // namespace platform
}  // namespace paddle