Unverified Commit 75a18827 authored by Michał Karzyński's avatar Michał Karzyński Committed by GitHub

Fix for Conv op (#1556)

parent ae6a2903
......@@ -106,7 +106,7 @@ namespace ngraph
auto data = inputs.at(0);
auto filters = inputs.at(1);
int groups{node.get_attribute_value<int>("group", 1)};
int64_t groups{node.get_attribute_value<int64_t>("group", 1)};
// TODO: update to ASSERTION CHECK
if (groups < 0 || groups > data->get_shape().at(1) ||
......
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