This patch removes unncessary CAST_NE from SquaredDifference Op, Since the configure functions of NEON Kernels expects parameters of type ITensor and the parameters input, output are all of type ITensor.
Signed-off-by: prasannar <prasanna.r@samsung.com>
}
else
{
- _neon_sub.configure(CAST_NE(input1), CAST_NE(input2), CAST_NE(output), ConvertPolicy);
- _neon_mul.configure(CAST_NE(output), CAST_NE(output), CAST_NE(output), scale, ConvertPolicy,
- RoundingPolicy);
+ _neon_sub.configure(input1, input2, output, ConvertPolicy);
+ _neon_mul.configure(output, output, output, scale, ConvertPolicy, RoundingPolicy);
}
}