#pragma once #include #include #include #include #include namespace at::xpu { C10_DEPRECATED_MESSAGE( "at::xpu::getCachingHostAllocator() is deprecated. Please use at::getHostAllocator(at::kXPU) instead.") inline TORCH_XPU_API at::HostAllocator* getCachingHostAllocator() { return at::getHostAllocator(at::kXPU); } C10_DEPRECATED_MESSAGE( "at::xpu::CachingHostAllocator_recordEvent(...) is deprecated. Please use at::getHostAllocator(at::kXPU)->record_event(...) instead.") inline TORCH_XPU_API bool CachingHostAllocator_recordEvent( void* ptr, void* ctx, c10::xpu::XPUStream stream) { return getHostAllocator(at::kXPU)->record_event(ptr, ctx, stream.unwrap()); } C10_DEPRECATED_MESSAGE( "at::xpu::CachingHostAllocator_emptyCache() is deprecated. Please use at::getHostAllocator(at::kXPU)->empty_cache() instead.") inline TORCH_XPU_API void CachingHostAllocator_emptyCache() { getHostAllocator(at::kXPU)->empty_cache(); } C10_DEPRECATED_MESSAGE( "at::xpu::HostAlloc(...) is deprecated. Please use at::getHostAllocator(at::kXPU)->allocate(...) instead.") inline TORCH_XPU_API at::DataPtr HostAlloc(size_t size) { return getHostAllocator(at::kXPU)->allocate(size); } } // namespace at::xpu