Cathal Corbett

Results 19 comments of Cathal Corbett

Hi @liamsun2019, I am getting 2 warnings for GATHER and TRANSPOSE running your models with CpuAcc seen in your issue #666. I just want to confirm these are still present...

[f32.txt](https://github.com/ARM-software/armnn/files/9141239/f32.txt) [u8.txt](https://github.com/ARM-software/armnn/files/9141240/u8.txt)

One thing I have noticed: average pooling (only used once in your model) is not supported in CpuAcc for uint8 and therefore the operation falls back to CpuRef. Time Cost:...

Along with the above the following is what I have discovered: - The uint8 model performs quantize and de-quantize operations (NeonQuantizeWorkload_Execute_#227 being the biggest time cost) which is adding up...

Hello @liamsun2019, Falling back to CpuRef is very much degrading your performance. Unfortunately, because many of the transpose and gather operations are not supported for CpuAcc, fallback is inevitable. We...

I have tried to run your model with the delegate and it fails due to the following error: ``` Warning: WARNING: Layer of type Pooling2d is not supported on requested...

Hello @liamsun2019, A [patch has been submitted to master](https://review.mlplatform.org/c/ml/armnn/+/7982) (soon to be changed to main) fixing the above failure for CpuAcc. Your model should now be able to fully run...

Hello @abhajaswal, It is difficult to know for sure from the small snippet of code you have provided why SaveCachedNetwork did not work. How you have created the 'CreationOptions' looks...

Hello @slntopp, I believe I may have a solution that will work for you. It would be great if you could run this and get your feedback on if it...

Hello @liamsun2019, I have just gotten around to reproducing the same cmake failures you have reported. Please bear with me which I try and find a solution to these issues...