Skip to content

Commit 0f301ec

Browse files
committed
Updating the usage help text
1 parent a47f6ce commit 0f301ec

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test-backend-ops.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5991,13 +5991,14 @@ static bool test_backend(ggml_backend_t backend, test_mode mode, const char * op
59915991
}
59925992

59935993
static void usage(char ** argv) {
5994-
printf("Usage: %s [mode] [-o <op>] [-b <backend>] [-p <params regex>] [--output <console|sql|csv>]\n", argv[0]);
5994+
printf("Usage: %s [mode] [-o <op,..>] [-b <backend>] [-p <params regex>] [--output <console|sql|csv>]\n", argv[0]);
59955995
printf(" valid modes:\n");
59965996
printf(" - test (default, compare with CPU backend for correctness)\n");
59975997
printf(" - grad (compare gradients from backpropagation with method of finite differences)\n");
59985998
printf(" - perf (performance evaluation)\n");
59995999
printf(" - support (probe backend operation support)\n");
6000-
printf(" op names for -o are as given by ggml_op_desc() (e.g. ADD, MUL_MAT, etc)\n");
6000+
printf(" op names for -o are as given by ggml_op_desc() (e.g. ADD, MUL_MAT, etc),\n");
6001+
printf(" optionally including the full test case string (e.g. \"ADD(type=f16,ne=[1,1,8,1],nr=[1,1,1,1],nf=1)\")\n");
60016002
printf(" --output specifies output format (default: console, options: console, sql, csv)\n");
60026003
}
60036004

0 commit comments

Comments
 (0)