xref: /aosp_15_r20/external/pytorch/torch/csrc/jit/backends/backend_interface.cpp (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #include <torch/csrc/jit/backends/backend_interface.h>
2 
3 namespace torch {
4 namespace jit {
5 
6 PyTorchBackendInterface::PyTorchBackendInterface() noexcept = default;
7 PyTorchBackendInterface::~PyTorchBackendInterface() = default;
8 
9 } // namespace jit
10 } // namespace torch
11