team-10/venv/Lib/site-packages/torch/include/ATen/xpu/XPUDevice.h

14 lines
267 B
C
Raw Normal View History

2025-08-02 02:00:33 +02:00
#pragma once
#include <ATen/Context.h>
#include <c10/xpu/XPUFunctions.h>
namespace at::xpu {
inline Device getDeviceFromPtr(void* ptr) {
auto device = c10::xpu::get_device_idx_from_pointer(ptr);
return {c10::DeviceType::XPU, device};
}
} // namespace at::xpu