flags relaxation, or tightening?

This commit is contained in:
Yangqing Jia
2015-12-07 20:48:57 -08:00
parent ceb4cde74a
commit 77541ffe14

View File

@ -19,40 +19,61 @@ bool ParseCaffeCommandLineFlags(int* pargc, char** argv) {
int write_head = 1;
for (int i = 1; i < *pargc; ++i) {
string arg(argv[i]);
int prefix_idx = arg.find('=');
if (prefix_idx == string::npos) {
prefix_idx = arg.size();
}
// If the arg does not start with "--", and we will ignore it.
if (arg[0] != '-' || arg[1] != '-') {
GlobalInitStream()
<< "Caffe2 flag: commandline argument does not match --name=var "
"or --name format:"
<< arg << std::endl;
"or --name format: "
<< arg << ". Ignoring this argument." << std::endl;
argv[write_head++] = argv[i];
continue;
}
string key = arg.substr(2, prefix_idx - 2);
string value = (prefix_idx == arg.size() ? ""
: arg.substr(prefix_idx + 1, string::npos));
string key;
string value;
int prefix_idx = arg.find('=');
if (prefix_idx == string::npos) {
// If there is no equality char in the arg, it means that the
// arg is specified in the next argument.
key = arg.substr(2, arg.size() - 2);
++i;
if (i == *pargc) {
GlobalInitStream()
<< "Caffe2 flag: reached the last commandline argument, but "
"I am expecting a value for it.";
success = false;
break;
}
value = string(argv[i]);
} else {
// If there is an equality character, we will basically use the value
// after the "=".
key = arg.substr(2, prefix_idx - 2);
value = arg.substr(prefix_idx + 1, string::npos);
}
// If the flag is not registered, we will ignore it.
if (!Caffe2FlagsRegistry()->Has(key)) {
GlobalInitStream() << "Caffe2 flag: unrecognized commandline argument: "
<< arg << std::endl;
argv[write_head++] = argv[i];
continue;
success = false;
break;
}
std::unique_ptr<Caffe2FlagParser> parser(
Caffe2FlagsRegistry()->Create(key, value));
if (!parser->success()) {
// TODO: quit elegantly.
GlobalInitStream() << "Caffe2 flag fatal: illegal argument: "
GlobalInitStream() << "Caffe2 flag: illegal argument: "
<< arg << std::endl;
success = false;
break;
}
}
*pargc = write_head;
gCommandLineFlagsParsed = true;
// TODO: when we fail commandline flag parsing, shall we continue, or
// shall we just quit loudly? Right now we carry on the computation, but
// since there are failures in parsing, it is very likely that some
// downstream things will break, in which case it makes sense to quit loud
// and early.
return success;
}
@ -68,7 +89,6 @@ bool Caffe2FlagParser::Parse<string>(const string& content, string* value) {
template <>
bool Caffe2FlagParser::Parse<int>(const string& content, int* value) {
/*
try {
*value = std::atoi(content.c_str());
return true;
@ -77,15 +97,10 @@ bool Caffe2FlagParser::Parse<int>(const string& content, int* value) {
<< content << std::endl;
return false;
}
*/
// Now compiling without exceptions...
*value = std::atoi(content.c_str());
return true;
}
template <>
bool Caffe2FlagParser::Parse<double>(const string& content, double* value) {
/*
try {
*value = std::atof(content.c_str());
return true;
@ -95,10 +110,6 @@ bool Caffe2FlagParser::Parse<double>(const string& content, double* value) {
<< content << std::endl;
return false;
}
*/
*value = std::atof(content.c_str());
return true;
}
template <>
@ -108,16 +119,21 @@ bool Caffe2FlagParser::Parse<bool>(const string& content, bool* value) {
*value = false;
return true;
} else if (content == "true" || content == "True" || content == "TRUE" ||
content == "1" || content == "") {
content == "1") {
*value = true;
return true;
} else {
GlobalInitStream()
<< "Caffe2 flag error: Cannot convert argument to bool: " << content
<< "Caffe2 flag error: Cannot convert argument to bool: "
<< content << std::endl
<< "Note that if you are passing in a bool flag, you need to "
"explicitly specify it, like --arg=True or --arg True. Otherwise, "
"the next argument may be inadvertently used as the argument, "
"causing the above error."
<< std::endl;
return false;
}
}
} // namespace caffe2
} // namespace caffe2