Skip to content
Snippets Groups Projects
Commit dc2d729f authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fixed missing extern

parent bb6c36fa
No related branches found
No related tags found
2 merge requests!152Update Aidge export to take a graph view has an argument instead of a...,!143Multiple refactors
......@@ -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 {
......
......@@ -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 {
......
......@@ -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"};
......
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