Skip to content
Snippets Groups Projects
Commit 097ee26f authored by Maxence Naud's avatar Maxence Naud
Browse files

Move AvgPooling external class template declaration out of namespace

parent 757cab85
No related branches found
No related tags found
No related merge requests found
......@@ -102,13 +102,14 @@ inline std::shared_ptr<Node> AvgPooling(
return AvgPooling(to_array(kernel_dims), name, stride_dims);
}
} // namespace Aidge
extern template class Aidge::AvgPooling_Op<1>;
extern template class Aidge::AvgPooling_Op<2>;
extern template class Aidge::AvgPooling_Op<3>;
extern template class Aidge::AvgPooling_Op<4>;
} // namespace Aidge
namespace {
template <>
const char *const EnumStrings<Aidge::AvgPoolingAttr>::data[] = {"StrideDims",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment