Skip to content
Snippets Groups Projects
Commit cd37b514 authored by Michal Szczepanski's avatar Michal Szczepanski
Browse files

typo removed

parent 438823d5
No related branches found
No related tags found
No related merge requests found
Pipeline #47753 failed
......@@ -43,7 +43,7 @@ void Aidge::ResizeImpl_cpu::forward() {
// If scales are given, this assertion checks if the input tensor and scales have the same dimensions.
if(!op_.template getAttr<ResizeAttr::NoScales>()){
AIDGE_ASSERT(op_.getInput(0)->nbDims() == op_.getInput(2)->size(),\
"input tensor and Scales must have the same dimentions.");
"input tensor and Scales must have the same dimensions.");
// TODO check if format op_.getInput(2)->data is OK ??!!
}
......@@ -51,7 +51,7 @@ void Aidge::ResizeImpl_cpu::forward() {
// If sizes are given, this assertion checks if the input tensor and sizes have the same dimensions.
if(!op_.template getAttr<ResizeAttr::NoSizes>()){
AIDGE_ASSERT(op_.getInput(0)->nbDims() == op_.getInput(3)->size(),\
"input tensor and Sizes must have the same dimentions.");
"input tensor and Sizes must have the same dimensions.");
// TODO check if format op_.getInput(3)->data is OK ??!!
}
......
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