From dc2d729fb0725740d259778c1d85bb23e3b55659 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Tue, 18 Jun 2024 19:14:08 +0200 Subject: [PATCH] Fixed missing extern --- include/aidge/operator/Conv.hpp | 1 + include/aidge/operator/ConvDepthWise.hpp | 1 + include/aidge/operator/Pad.hpp | 3 +++ 3 files changed, 5 insertions(+) diff --git a/include/aidge/operator/Conv.hpp b/include/aidge/operator/Conv.hpp index 9310fdd24..cf06311a3 100644 --- a/include/aidge/operator/Conv.hpp +++ b/include/aidge/operator/Conv.hpp @@ -167,6 +167,7 @@ inline std::shared_ptr<Node> Conv( } } // namespace Aidge +extern template class Aidge::Conv_Op<1>; extern template class Aidge::Conv_Op<2>; namespace { diff --git a/include/aidge/operator/ConvDepthWise.hpp b/include/aidge/operator/ConvDepthWise.hpp index 594eab3f0..eaab84647 100644 --- a/include/aidge/operator/ConvDepthWise.hpp +++ b/include/aidge/operator/ConvDepthWise.hpp @@ -128,6 +128,7 @@ inline std::shared_ptr<Node> ConvDepthWise( } } // namespace Aidge +extern template class Aidge::ConvDepthWise_Op<1>; extern template class Aidge::ConvDepthWise_Op<2>; namespace { diff --git a/include/aidge/operator/Pad.hpp b/include/aidge/operator/Pad.hpp index a4e4ebdce..810464f4d 100644 --- a/include/aidge/operator/Pad.hpp +++ b/include/aidge/operator/Pad.hpp @@ -137,6 +137,9 @@ inline std::shared_ptr<Node> Pad( } } // namespace Aidge +extern template class Aidge::Pad_Op<1>; +extern template class Aidge::Pad_Op<2>; + namespace { template <> const char *const EnumStrings<Aidge::PadAttr>::data[] = {"BeginEndBorders", "BorderType", "BorderValue"}; -- GitLab