mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Fixes #ISSUE_NUMBER Pull Request resolved: https://github.com/pytorch/pytorch/pull/138976 Approved by: https://github.com/Skylion007
9 lines
252 B
C++
9 lines
252 B
C++
#pragma once
|
|
|
|
#include <torch/csrc/jit/frontend/resolver.h>
|
|
|
|
namespace torch::jit {
|
|
// Create a Resolver for use in generating LoweredModules for specific backends.
|
|
TORCH_API std::shared_ptr<Resolver> loweredModuleResolver();
|
|
} // namespace torch::jit
|