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

[Fix] Tensor::computeSize() parameter

parent 6300a4a0
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,7 @@ void Aidge::Tensor::resize(const std::vector<Aidge::DimSize_t> &dims, std::vecto ...@@ -55,7 +55,7 @@ void Aidge::Tensor::resize(const std::vector<Aidge::DimSize_t> &dims, std::vecto
computeSize(); computeSize();
if (mImpl) { if (mImpl) {
mImpl->resize(mSize); mImpl->resize(mDims);
} }
} }
} }
......
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