PSCF v1.2
getNThread.cpp
1/*
2* PSCF - Polymer Self-Consistent Field Theory
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "getNThread.h"
9#include <util/global.h>
10
11#ifdef PSCF_OPENMP
12#include <omp.h>
13#endif
14
15#include <unistd.h>
16#include <cstring>
17
18using namespace Util;
19
20namespace Pscf {
21
22 /*
23 * Extract integer argument of -d option.
24 */
25 int getNThread(int argc, char **argv)
26 {
27 // No arguments other than program name
28 if (argc < 2) {
29 UTIL_THROW("No command options found");
30 }
31
32 int length;
33 char* option = 0;
34 char* arg = 0;
35
36 // Find -t option and its argument
37 bool found = false; // Has the -t option been found
38 bool done = false; // Has a valid parameter been found
39 int i = 1;
40 while (!done && i < argc) {
41 option = argv[i];
42 length = strlen(option);
43 if (!found) {
44 if (length > 1) {
45 if (option[0] == '-') {
46 if (option[1] == 't') {
47 found = true;
48 }
49 }
50 if (found && length > 2) {
51 // Option of form -d# with no space
52 arg = &option[2];
53 done = true;
54 }
55 }
56 } else {
57 arg = option;
58 done = true;
59 }
60 ++i;
61 }
62
63 // If found, convert arg to integer nThread
64 int nThread = 0;
65 if (done) {
66 nThread = atoi(arg);
67 }
68
69 // Set the number of OpenMP threads
70 if (nThread > 0) {
71 std::cout << "Nthread " << nThread << "\n";
72 #ifdef PSCF_OPENMP
73 omp_set_num_threads(nThread);
74 #else
75 std::cout << "Warning: OpenMP is not enabled. \n";
76 #endif
77 } else {
78 std::cout << "Nthread " << nThread << "\n";
79 std::cout << "Warning: Number of threads cannot be set\n";
80 }
81
82 return nThread;
83 }
84
85}
File containing preprocessor macros for error handling.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.