Commit d6a58708 authored by Robert Kimball's avatar Robert Kimball

fix review comments

parent 6ba3b8dc
...@@ -113,7 +113,7 @@ namespace ngraph ...@@ -113,7 +113,7 @@ namespace ngraph
}; };
} }
// ET element type // T element type
// FMT array format (fmt::V for vector, etc.) // FMT array format (fmt::V for vector, etc.)
// BASE select array/matrix // BASE select array/matrix
template <typename T, template <typename T,
......
...@@ -1060,18 +1060,6 @@ void Emitter::EmitReduce(const ngraph::Node* n, ...@@ -1060,18 +1060,6 @@ void Emitter::EmitReduce(const ngraph::Node* n,
auto reduce = static_cast<const op::Reduce*>(n); auto reduce = static_cast<const op::Reduce*>(n);
auto reduction_function = reduce->get_reduction_function(); auto reduction_function = reduce->get_reduction_function();
// std::shared_ptr<ExternalFunction> external;
// try
// {
// external = function_map.at(reduction_function);
// }
// catch (const std::out_of_range)
// {
// external = make_shared<ExternalFunction>(reduction_function);
// function_map.insert({reduction_function, external});
// }
auto reductee_type = reduce->get_arguments().at(0)->get_value_type(); auto reductee_type = reduce->get_arguments().at(0)->get_value_type();
auto reductee_tensor_view_type = dynamic_pointer_cast<const TensorViewType>(reductee_type); auto reductee_tensor_view_type = dynamic_pointer_cast<const TensorViewType>(reductee_type);
assert(reductee_tensor_view_type); assert(reductee_tensor_view_type);
......
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