From 8010061e8af476d66a0ca6fb6d509b36acdb9b9a Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Thu, 6 Sep 2018 06:35:59 +0000 Subject: Further debugging --- src/gemma.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/gemma.cpp') diff --git a/src/gemma.cpp b/src/gemma.cpp index e1d76d4..7d12055 100644 --- a/src/gemma.cpp +++ b/src/gemma.cpp @@ -733,6 +733,7 @@ void GEMMA::PrintHelp(size_t option) { if (option == 14) { cout << " DEBUG OPTIONS" << endl; cout << " -no-check disable checks" << endl; + cout << " -no-fpe-check disable hardware floating point checking" << endl; cout << " -strict strict mode will stop when there is a problem" << endl; cout << " -silence silent terminal display" << endl; cout << " -debug debug output" << endl; @@ -1616,6 +1617,9 @@ void GEMMA::Assign(int argc, char **argv, PARAM &cPar) { } else if (strcmp(argv[i], "-no-check") == 0) { // cPar.mode_check = false; debug_set_no_check_mode(true); + } else if (strcmp(argv[i], "-no-fpe-check") == 0) { + // cPar.mode_check = false; + debug_set_no_fpe_check_mode(true); } else if (strcmp(argv[i], "-strict") == 0) { // cPar.mode_strict = true; debug_set_strict_mode(true); -- cgit v1.2.3