From 615cc6d5870318ad3c282bc7652f3533a49c5525 Mon Sep 17 00:00:00 2001 From: David Wells Date: Tue, 24 Jul 2018 11:28:00 -0400 Subject: [PATCH] Improve generate_lapack_templates' documentation. --- contrib/utilities/generate_lapack_templates | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/contrib/utilities/generate_lapack_templates b/contrib/utilities/generate_lapack_templates index c012707b6e..af3e009e7e 100755 --- a/contrib/utilities/generate_lapack_templates +++ b/contrib/utilities/generate_lapack_templates @@ -484,7 +484,14 @@ def main(): """Determine the subroutines and then print needed declarations and definitions to the header. """ - parser = argparse.ArgumentParser() + parser = argparse.ArgumentParser( + description=("Automatically generate deal.II-compatible template BLAS " + + "and LAPACK wrappers by parsing the documentation provided " + + " by each library. The best way to get this documentation " + + "is to clone the LAPACK development sources available at " + + "https://github.com/Reference-LAPACK and then pass the " + + "root directory location to this program with the " + + "--lapack-root-directory option.")) lapack_subroutines = list() blas_subroutines = list() fp_guarded_subroutines = list() -- 2.39.5