m.def("grad", []
(
  const Eigen::MatrixXd& V,
  const Eigen::MatrixXi& F,
  Eigen::SparseMatrix<double>& G
)
{
  return igl::grad(V,F,G);
}, __doc_igl_grad,
py::arg("V"), py::arg("F"), py::arg("G"));