Files
pytorch/c10/core/impl/DeviceGuardImplInterface.cpp

18 lines
470 B
C++

#include <c10/core/impl/DeviceGuardImplInterface.h>
#include <array>
namespace c10::impl {
std::array<
std::atomic<const DeviceGuardImplInterface*>,
static_cast<size_t>(DeviceType::COMPILE_TIME_MAX_DEVICE_TYPES)>
device_guard_impl_registry;
DeviceGuardImplRegistrar::DeviceGuardImplRegistrar(
DeviceType type,
const DeviceGuardImplInterface* impl) {
device_guard_impl_registry[static_cast<size_t>(type)].store(impl);
}
} // namespace c10::impl