#pragma once #include #include 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