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

[Fix] Concat Operator factory

parent b37e1fac
No related branches found
No related tags found
2 merge requests!46Remove Operator reference to Tensor,!20Draft: Introduction of Tiling
Pipeline #33077 passed
......@@ -179,7 +179,7 @@ public:
};
inline std::shared_ptr<Node> Concat(const IOIndex_t nbIn, const DimIdx_t axis = 0, const std::string& name = "") {
return std::make_shared<Node>(std::make_shared<Concat_Op>(nbIn), axis, name);
return std::make_shared<Node>(std::make_shared<Concat_Op>(nbIn, axis), name);
}
}
......
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