blob: a1e0b31fe2295ae7de247d0c0798f1588a0cb86c [file] [log] [blame]
#pragma once
#include "torch/csrc/jit/ir.h"
#include "torch/csrc/jit/script/module.h"
#include <istream>
namespace torch {
namespace jit {
using ModuleLookup = std::function<std::shared_ptr<script::Module>(
const std::vector<std::string>&)>;
TORCH_API void import_ir_module(
ModuleLookup module_lookup,
const std::string& filename);
TORCH_API void import_ir_module(
ModuleLookup module_lookup,
std::istream& in);
/// Loads a serialized `script::Module` from the given `filename`.
///
/// The file stored at the location given in `filename` must contain a
/// serialized `script::Module`, exported either via `ScriptModule.save()` in
/// Python or `torch::jit::ExportModule` in C++.
TORCH_API std::shared_ptr<script::Module> load(std::istream& in);
TORCH_API std::shared_ptr<script::Module> load(const std::string& filename);
} // namespace jit
} // namespace torch