mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 00:21:07 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/61744 Test Plan: Sandcastle Reviewed By: malfet Differential Revision: D29717320 fbshipit-source-id: 6eea4295ee2e5572ab337620be412376fcc2f3cc
11 lines
266 B
C++
11 lines
266 B
C++
#include <torch/csrc/jit/backends/backend_interface.h>
|
|
|
|
namespace torch {
|
|
namespace jit {
|
|
|
|
PyTorchBackendInterface::PyTorchBackendInterface() noexcept = default;
|
|
PyTorchBackendInterface::~PyTorchBackendInterface() = default;
|
|
|
|
} // namespace jit
|
|
} // namespace torch
|