Unverified Commit be0a9f03 authored by Robert Kimball's avatar Robert Kimball Committed by GitHub

address klocwork issues (#1750)

parent 9f26b7e9
...@@ -46,4 +46,6 @@ int main() ...@@ -46,4 +46,6 @@ int main()
std::cout << std::get<0>(r); std::cout << std::get<0>(r);
} }
std::cout << std::endl; std::cout << std::endl;
return 0;
} }
...@@ -36,6 +36,7 @@ std::string ngraph::placement_to_string(Placement placement) ...@@ -36,6 +36,7 @@ std::string ngraph::placement_to_string(Placement placement)
case Placement::GPU: return "GPU"; case Placement::GPU: return "GPU";
case Placement::NNP: return "NNP"; case Placement::NNP: return "NNP";
} }
throw runtime_error("unhandled placement type");
} }
static Node* take_independent_node_with_placement_priority( static Node* take_independent_node_with_placement_priority(
......
...@@ -1358,6 +1358,7 @@ void runtime::cpu::CPU_ExternalFunction::build() ...@@ -1358,6 +1358,7 @@ void runtime::cpu::CPU_ExternalFunction::build()
case CPUTensorRole::CONSTANT: return string("CPUTensorRole::CONSTANT"); case CPUTensorRole::CONSTANT: return string("CPUTensorRole::CONSTANT");
case CPUTensorRole::OUTPUT: return string("CPUTensorRole::OUTPUT"); case CPUTensorRole::OUTPUT: return string("CPUTensorRole::OUTPUT");
} }
throw runtime_error("unhandled CPU tensor role");
}; };
//dump the tensor roles to debug manifest //dump the tensor roles to debug manifest
......
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