Skip to content
Snippets Groups Projects
Commit 11df55bf authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Added --threads option

parent c83e376c
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,8 @@ int main(int argc, char *argv[]) ...@@ -11,6 +11,8 @@ int main(int argc, char *argv[])
long number = 1000; long number = 1000;
app.add_option("-n,--number", number, "A big integer"); app.add_option("-n,--number", number, "A big integer");
int threads=-1;
app.add_option("--threads", threads, "Number of Kokkos threads");
CLI11_PARSE(app, argc, argv); CLI11_PARSE(app, argc, argv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment