From a205a41bd50012c8a4cbd7114a4a2ca2c3e55bd0 Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Wed, 29 Dec 2021 15:36:07 +0100 Subject: [PATCH] Added missing options to help output --- src/usage.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/usage.c b/src/usage.c index fab086849..69c35485a 100644 --- a/src/usage.c +++ b/src/usage.c @@ -47,6 +47,7 @@ static const char *const USAGE_BIG_PRE_HASHMODES[] = " --markov-hcstat2 | File | Specify hcstat2 file to use | --markov-hcstat2=my.hcstat2", " --markov-disable | | Disables markov-chains, emulates classic brute-force |", " --markov-classic | | Enables classic markov-chains, no per-position |", + " --markov-inverse | | Enables inverse markov-chains, no per-position |", " -t, --markov-threshold | Num | Threshold X when to stop accepting new markov-chains | -t 50", " --runtime | Num | Abort session after X seconds of runtime | --runtime=10", " --session | Str | Define specific session name | --session=mysession", @@ -93,6 +94,7 @@ static const char *const USAGE_BIG_PRE_HASHMODES[] = " --hash-info | | Show information for each hash-mode |", " --example-hashes | | Alias of --hash-info |", " --backend-ignore-cuda | | Do not try to open CUDA interface on startup |", + " --backend-ignore-hip | | Do not try to open HIP interface on startup |", " --backend-ignore-opencl | | Do not try to open OpenCL interface on startup |", " -I, --backend-info | | Show info about detected backend API devices | -I", " -d, --backend-devices | Str | Backend devices to use, separated with commas | -d 1",