1#pragma once
2
3#include <torch/csrc/python_headers.h>
4#include <string>
5#include <vector>
6
7namespace torch {
8
9std::string format_invalid_args(
10 PyObject* given_args,
11 PyObject* given_kwargs,
12 const std::string& function_name,
13 const std::vector<std::string>& options);
14
15} // namespace torch
16