abhajaswal
abhajaswal
Dear team, Could you let me know what could be the root cause? Does the pipline creation takes more time? I need to review the usage of the ARMNN further...
Thanks ! Using cl_cache.bin i am able to reduce the time to load model from 20612 ms to Init : 1379 ms After cl_cache.bin restore Image read time (From file...
I use std::vector mAccelType; armnn::IRuntime::CreationOptions creation_options; std::string const filePathString = "/usr/share/dann/armnn_clcahae.bin"; creation_options.m_BackendOptions.emplace_back( armnn::BackendOptions { "GpuAcc", { { "FastMathEnabled", true}, {"SaveCachedNetwork", true}, {"CachedNetworkFilePath", filePathString} } } ); armnn::IRuntime *InferenceARMNN::sRuntime(nullptr); sRuntime =...
I had put few logs and code flow looked like this : ClBackendContext called 0 /home/abuild/rpmbuild/BUILD/armnn-21.02/include/armnn/BackendOptions.hpp ParseOptions 292 FastMathEnabled /home/abuild/rpmbuild/BUILD/armnn-21.02/include/armnn/BackendOptions.hpp ParseOptions 292 SaveCachedNetwork /home/abuild/rpmbuild/BUILD/armnn-21.02/include/armnn/BackendOptions.hpp ParseOptions 292 CachedNetworkFilePath Info: Initialization time:...
I confirm by using optimizer options i am able to save and load the CL files ``` std::vectorarmnn::BackendId mAccelType; armnn::IRuntime::CreationOptions creation_options; std::string const filePathString = "/usr/share/dann/armnn_clcahae.bin"; creation_options.m_BackendOptions.emplace_back( armnn::BackendOptions { "GpuAcc",...
Apart from this can you help with the difference between CLtuner file and files saved via SaveCachedNetwork ?