├── .gitignore ├── .gitmodules ├── .licence_boilerplate ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── NEWS ├── NOTICE ├── README ├── README.md ├── _config.yml ├── compile ├── config.h ├── config.h.in ├── config ├── config_48.cfg ├── config_default.cfg ├── config_default_16k.cfg ├── config_default_48k.cfg ├── config_pitch_shift.cfg └── foo.dnnInfo ├── configure ├── configure.ac ├── depcomp ├── dnn_demo ├── config_dnn_demo.cfg ├── config_dnn_demo.py └── get_data.sh ├── docs ├── index.md └── vocoder_config.md ├── install-sh ├── missing ├── mkdocs.yml ├── python ├── GlottDnnScript.py ├── TrainDnn.py ├── config.py ├── config_default_16k.py ├── config_default_48k.py ├── config_mfcc.py ├── data_utils.py ├── dnnClasses.py └── reaper_pitch_analysis.py ├── src ├── Makefile.am ├── Makefile.in ├── glott │ ├── .dirstamp │ ├── Analysis.cpp │ ├── AnalysisFunctions.cpp │ ├── AnalysisFunctions.h │ ├── ComplexVector.cpp │ ├── ComplexVector.h │ ├── DnnClass.cpp │ ├── DnnClass.h │ ├── FileIo.cpp │ ├── FileIo.h │ ├── Filters.h │ ├── InverseFiltering.cpp │ ├── InverseFiltering.h │ ├── LsfPostFilterMain.cpp │ ├── Makefile.in │ ├── PitchEstimation.cpp │ ├── PitchEstimation.h │ ├── QmfFunctions.cpp │ ├── QmfFunctions.h │ ├── ReadConfig.cpp │ ├── ReadConfig.h │ ├── SpFunctions.cpp │ ├── SpFunctions.h │ ├── Synthesis.cpp │ ├── SynthesisFunctions.cpp │ ├── SynthesisFunctions.h │ ├── Utils.cpp │ ├── Utils.h │ ├── definitions.cpp │ └── definitions.h └── gslwrap │ ├── .dirstamp │ ├── COPYING │ ├── LICENCE │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── generate │ ├── histogram.h │ ├── matrix_double.cc │ ├── matrix_double.h │ ├── matrix_float.cc │ ├── matrix_float.h │ ├── matrix_int.cc │ ├── matrix_int.h │ ├── matrix_source.cc │ ├── matrix_source.h │ ├── matrix_vector_operators.h │ ├── min_fminimizer.h │ ├── multimin_fdfminimizer.h │ ├── permutation.h │ ├── random_generator.cc │ ├── random_generator.h │ ├── random_number_distribution.h │ ├── vector_double.cc │ ├── vector_double.h │ ├── vector_float.cc │ ├── vector_float.h │ ├── vector_int.cc │ ├── vector_int.h │ ├── vector_source.cc │ └── vector_source.h └── stamp-h1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.licence_boilerplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/.licence_boilerplate -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=src 2 | -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/NOTICE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/_config.yml -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/compile -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/config.h -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/config.h.in -------------------------------------------------------------------------------- /config/config_48.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/config/config_48.cfg -------------------------------------------------------------------------------- /config/config_default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/config/config_default.cfg -------------------------------------------------------------------------------- /config/config_default_16k.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/config/config_default_16k.cfg -------------------------------------------------------------------------------- /config/config_default_48k.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/config/config_default_48k.cfg -------------------------------------------------------------------------------- /config/config_pitch_shift.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/config/config_pitch_shift.cfg -------------------------------------------------------------------------------- /config/foo.dnnInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/config/foo.dnnInfo -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/depcomp -------------------------------------------------------------------------------- /dnn_demo/config_dnn_demo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/dnn_demo/config_dnn_demo.cfg -------------------------------------------------------------------------------- /dnn_demo/config_dnn_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/dnn_demo/config_dnn_demo.py -------------------------------------------------------------------------------- /dnn_demo/get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/dnn_demo/get_data.sh -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/vocoder_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/docs/vocoder_config.md -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/install-sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/missing -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /python/GlottDnnScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/python/GlottDnnScript.py -------------------------------------------------------------------------------- /python/TrainDnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/python/TrainDnn.py -------------------------------------------------------------------------------- /python/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/python/config.py -------------------------------------------------------------------------------- /python/config_default_16k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/python/config_default_16k.py -------------------------------------------------------------------------------- /python/config_default_48k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/python/config_default_48k.py -------------------------------------------------------------------------------- /python/config_mfcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/python/config_mfcc.py -------------------------------------------------------------------------------- /python/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/python/data_utils.py -------------------------------------------------------------------------------- /python/dnnClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/python/dnnClasses.py -------------------------------------------------------------------------------- /python/reaper_pitch_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/python/reaper_pitch_analysis.py -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/glott/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/glott/Analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/Analysis.cpp -------------------------------------------------------------------------------- /src/glott/AnalysisFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/AnalysisFunctions.cpp -------------------------------------------------------------------------------- /src/glott/AnalysisFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/AnalysisFunctions.h -------------------------------------------------------------------------------- /src/glott/ComplexVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/ComplexVector.cpp -------------------------------------------------------------------------------- /src/glott/ComplexVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/ComplexVector.h -------------------------------------------------------------------------------- /src/glott/DnnClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/DnnClass.cpp -------------------------------------------------------------------------------- /src/glott/DnnClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/DnnClass.h -------------------------------------------------------------------------------- /src/glott/FileIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/FileIo.cpp -------------------------------------------------------------------------------- /src/glott/FileIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/FileIo.h -------------------------------------------------------------------------------- /src/glott/Filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/Filters.h -------------------------------------------------------------------------------- /src/glott/InverseFiltering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/InverseFiltering.cpp -------------------------------------------------------------------------------- /src/glott/InverseFiltering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/InverseFiltering.h -------------------------------------------------------------------------------- /src/glott/LsfPostFilterMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/LsfPostFilterMain.cpp -------------------------------------------------------------------------------- /src/glott/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/Makefile.in -------------------------------------------------------------------------------- /src/glott/PitchEstimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/PitchEstimation.cpp -------------------------------------------------------------------------------- /src/glott/PitchEstimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/PitchEstimation.h -------------------------------------------------------------------------------- /src/glott/QmfFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/QmfFunctions.cpp -------------------------------------------------------------------------------- /src/glott/QmfFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/QmfFunctions.h -------------------------------------------------------------------------------- /src/glott/ReadConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/ReadConfig.cpp -------------------------------------------------------------------------------- /src/glott/ReadConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/ReadConfig.h -------------------------------------------------------------------------------- /src/glott/SpFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/SpFunctions.cpp -------------------------------------------------------------------------------- /src/glott/SpFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/SpFunctions.h -------------------------------------------------------------------------------- /src/glott/Synthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/Synthesis.cpp -------------------------------------------------------------------------------- /src/glott/SynthesisFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/SynthesisFunctions.cpp -------------------------------------------------------------------------------- /src/glott/SynthesisFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/SynthesisFunctions.h -------------------------------------------------------------------------------- /src/glott/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/Utils.cpp -------------------------------------------------------------------------------- /src/glott/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/Utils.h -------------------------------------------------------------------------------- /src/glott/definitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/definitions.cpp -------------------------------------------------------------------------------- /src/glott/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/glott/definitions.h -------------------------------------------------------------------------------- /src/gslwrap/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gslwrap/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/COPYING -------------------------------------------------------------------------------- /src/gslwrap/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/LICENCE -------------------------------------------------------------------------------- /src/gslwrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/Makefile -------------------------------------------------------------------------------- /src/gslwrap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/Makefile.am -------------------------------------------------------------------------------- /src/gslwrap/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/Makefile.in -------------------------------------------------------------------------------- /src/gslwrap/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/generate -------------------------------------------------------------------------------- /src/gslwrap/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/histogram.h -------------------------------------------------------------------------------- /src/gslwrap/matrix_double.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/matrix_double.cc -------------------------------------------------------------------------------- /src/gslwrap/matrix_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/matrix_double.h -------------------------------------------------------------------------------- /src/gslwrap/matrix_float.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/matrix_float.cc -------------------------------------------------------------------------------- /src/gslwrap/matrix_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/matrix_float.h -------------------------------------------------------------------------------- /src/gslwrap/matrix_int.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/matrix_int.cc -------------------------------------------------------------------------------- /src/gslwrap/matrix_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/matrix_int.h -------------------------------------------------------------------------------- /src/gslwrap/matrix_source.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/matrix_source.cc -------------------------------------------------------------------------------- /src/gslwrap/matrix_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/matrix_source.h -------------------------------------------------------------------------------- /src/gslwrap/matrix_vector_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/matrix_vector_operators.h -------------------------------------------------------------------------------- /src/gslwrap/min_fminimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/min_fminimizer.h -------------------------------------------------------------------------------- /src/gslwrap/multimin_fdfminimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/multimin_fdfminimizer.h -------------------------------------------------------------------------------- /src/gslwrap/permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/permutation.h -------------------------------------------------------------------------------- /src/gslwrap/random_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/random_generator.cc -------------------------------------------------------------------------------- /src/gslwrap/random_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/random_generator.h -------------------------------------------------------------------------------- /src/gslwrap/random_number_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/random_number_distribution.h -------------------------------------------------------------------------------- /src/gslwrap/vector_double.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/vector_double.cc -------------------------------------------------------------------------------- /src/gslwrap/vector_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/vector_double.h -------------------------------------------------------------------------------- /src/gslwrap/vector_float.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/vector_float.cc -------------------------------------------------------------------------------- /src/gslwrap/vector_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/vector_float.h -------------------------------------------------------------------------------- /src/gslwrap/vector_int.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/vector_int.cc -------------------------------------------------------------------------------- /src/gslwrap/vector_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/vector_int.h -------------------------------------------------------------------------------- /src/gslwrap/vector_source.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/vector_source.cc -------------------------------------------------------------------------------- /src/gslwrap/vector_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljuvela/GlottDNN/HEAD/src/gslwrap/vector_source.h -------------------------------------------------------------------------------- /stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | --------------------------------------------------------------------------------