Skip to content

Commit

Permalink
quantize : fix --keep-split check (#7374)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredlas authored May 19, 2024
1 parent f030ec1 commit 1ea2a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/quantize/quantize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ int main(int argc, char ** argv) {
} else {
usage(argv[0]);
}
} else if (strcmp(argv[arg_idx], "--keep-split")) {
} else if (strcmp(argv[arg_idx], "--keep-split") == 0) {
params.keep_split = true;
} else {
usage(argv[0]);
Expand Down

0 comments on commit 1ea2a00

Please sign in to comment.