mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
This PR relands the changes introduced in PR #100849. The old PR turnd nnc_aten_embedding into a static function, however, it is actually used in torch/csrc/jit/tensorexpr/operators/misc.cpp. Pull Request resolved: https://github.com/pytorch/pytorch/pull/101949 Approved by: https://github.com/albanD
49 lines
1.3 KiB
C++
49 lines
1.3 KiB
C++
#include <torch/csrc/lazy/backend/backend_interface.h>
|
|
#include <torch/csrc/lazy/core/internal_ops/ltc_ops.h>
|
|
|
|
namespace torch {
|
|
namespace lazy {
|
|
|
|
namespace {
|
|
std::atomic<const BackendImplInterface*> backend_impl_registry;
|
|
} // namespace
|
|
|
|
bool hasBackend() {
|
|
return !!backend_impl_registry.load();
|
|
}
|
|
|
|
const BackendImplInterface* getBackend() {
|
|
auto* interface = backend_impl_registry.load();
|
|
TORCH_CHECK(interface, "Lazy tensor backend not registered.");
|
|
return interface;
|
|
}
|
|
|
|
BackendRegistrar::BackendRegistrar(
|
|
const BackendImplInterface* backend_impl_interface) {
|
|
backend_impl_registry.store(backend_impl_interface);
|
|
}
|
|
|
|
// Get IrBuilder from backend. Use TorchScriptIrBuilder by default
|
|
const IrBuilder* getIrBuilder() {
|
|
static const IrBuilder* builder = getBackend()->GetIrBuilder();
|
|
return builder;
|
|
}
|
|
|
|
std::unique_ptr<LoweringContext> LoweringContext::Create(
|
|
const std::string& name,
|
|
BackendDevice device,
|
|
c10::ArrayRef<const Node*> post_order,
|
|
Util::EmissionMap emit_status) {
|
|
return getBackend()->CreateLoweringContext(
|
|
name, std::move(device), post_order, emit_status);
|
|
}
|
|
|
|
std::unique_ptr<LoweringContext> LoweringContext::Create(
|
|
const std::string& name,
|
|
BackendDevice device) {
|
|
return getBackend()->CreateLoweringContext(name, std::move(device));
|
|
}
|
|
|
|
} // namespace lazy
|
|
} // namespace torch
|