xpu_info.cc 3.2 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/pten/backends/xpu/xpu_info.h"
25 26 27 28

namespace paddle {
namespace platform {

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

//! Get the version of XPU Driver
W
Wilber 已提交
32
int GetDriverVersion() { return pten::backends::xpu::GetDriverVersion(); }
33 34

//! Get the version of XPU Runtime
W
Wilber 已提交
35
int GetRuntimeVersion() { return pten::backends::xpu::GetRuntimeVersion(); }
36 37 38

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

W
Wilber 已提交
39
int GetXPUDeviceCount() { return pten::backends::xpu::GetXPUDeviceCount(); }
40 41

int GetXPUCurrentDeviceId() {
W
Wilber 已提交
42
  return pten::backends::xpu::GetXPUCurrentDeviceId();
43 44
}

W
Wilber 已提交
45
void SetXPUDeviceId(int id) { pten::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.
W
Wilber 已提交
50
  return pten::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) {
W
Wilber 已提交
57
  pten::backends::xpu::MemcpySyncH2D(dst, src, count, dst_place);
58 59
}

60 61 62 63 64
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();
W
Wilber 已提交
65
  pten::backends::xpu::MemcpySyncD2H(dst, src, count, src_place, *dev_ctx);
66 67
}

68 69 70 71
// 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,
72
                   size_t count) {
W
Wilber 已提交
73 74 75 76
  platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance();
  auto* dev_ctx = pool.GetByPlace(src_place);
  pten::backends::xpu::MemcpySyncD2D(dst, dst_place, src, src_place, count,
                                     *dev_ctx);
77 78
}

79 80
/**************************** Others **************************/

W
Wilber 已提交
81 82
pten::backends::xpu::XPUVersion get_xpu_version(int dev_id) {
  return pten::backends::xpu::get_xpu_version(dev_id);
Q
QingshuChen 已提交
83 84
}

85 86
}  // namespace platform
}  // namespace paddle