1 #pragma once 2 3 #include <torch/csrc/jit/api/module.h> 4 #include <torch/csrc/jit/ir/ir.h> 5 6 namespace torch::jit { 7 8 TORCH_API std::pair<Module, std::vector<IValue>> list_module_parameters( 9 const Module& module); 10 11 } // namespace torch::jit 12