44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
|
#pragma once
|
||
|
|
||
|
#include <ATen/detail/AcceleratorHooksInterface.h>
|
||
|
|
||
|
#include <c10/core/Allocator.h>
|
||
|
#include <c10/util/Exception.h>
|
||
|
#include <c10/util/Registry.h>
|
||
|
|
||
|
namespace at {
|
||
|
|
||
|
struct TORCH_API IPUHooksInterface : AcceleratorHooksInterface {
|
||
|
~IPUHooksInterface() override = default;
|
||
|
|
||
|
void init() const override {
|
||
|
TORCH_CHECK(false, "Cannot initialize IPU without ATen_ipu library.");
|
||
|
}
|
||
|
|
||
|
bool hasPrimaryContext(DeviceIndex device_index) const override {
|
||
|
TORCH_CHECK(false, "Cannot initialize IPU without ATen_ipu library.");
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
const Generator& getDefaultGenerator(
|
||
|
[[maybe_unused]] DeviceIndex device_index = -1) const override {
|
||
|
TORCH_CHECK(false, "Cannot initialize IPU without ATen_ipu library.");
|
||
|
}
|
||
|
|
||
|
Generator getNewGenerator(
|
||
|
DeviceIndex device_index [[maybe_unused]] = -1) const override {
|
||
|
TORCH_CHECK(false, "Cannot initialize IPU without ATen_ipu library.");
|
||
|
}
|
||
|
};
|
||
|
|
||
|
struct TORCH_API IPUHooksArgs {};
|
||
|
|
||
|
TORCH_DECLARE_REGISTRY(IPUHooksRegistry, IPUHooksInterface, IPUHooksArgs);
|
||
|
#define REGISTER_IPU_HOOKS(clsname) \
|
||
|
C10_REGISTER_CLASS(IPUHooksRegistry, clsname, clsname)
|
||
|
|
||
|
namespace detail {
|
||
|
TORCH_API const IPUHooksInterface& getIPUHooks();
|
||
|
} // namespace detail
|
||
|
} // namespace at
|