Commit 37919248 authored by Rob Earhart's avatar Rob Earhart

Accept empty PlaidML config options

parent 71d5ced5
......@@ -163,6 +163,11 @@ ngraph::runtime::plaidml::Config
// So to verify that there is a non-zero-length option value, test oval_len
// To verify that there is no option value, test has_oval
if (oname_begin == oname_end && !has_oval) {
// An empty option; poor style, but advance to the next.
continue;
}
// Check for verbosity
if (is_opt("v"))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment