xref: /aosp_15_r20/external/pytorch/aten/src/ATen/detail/CPUGuardImpl.cpp (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #include <c10/core/impl/DeviceGuardImplInterface.h>
2 
3 namespace at::detail {
4 
5 C10_REGISTER_GUARD_IMPL(CPU, c10::impl::NoOpDeviceGuardImpl<DeviceType::CPU>);
6 
7 } // namespace at::detail
8