team-10/env/Lib/site-packages/torch/include/ATen/xpu/XPUDevice.h
2025-08-02 07:34:44 +02:00

13 lines
267 B
C++

#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