aboutsummaryrefslogtreecommitdiff
path: root/ArmnnDevice.cpp
diff options
context:
space:
mode:
authorDerek Lamberti <derek.lamberti@arm.com>2019-11-28 13:34:48 +0000
committerDerek Lamberti <derek.lamberti@arm.com>2019-11-29 11:25:10 +0000
commitb9cb84484b29ca588661b542bf8f93a8fb14edc1 (patch)
tree81026c0ecc081a90a23ada8ce1e7b8b38c7e1e43 /ArmnnDevice.cpp
parent00d6ed157bb83330da5dbfb3737b0e5dcd3fbeb0 (diff)
downloadandroid-nn-driver-b9cb84484b29ca588661b542bf8f93a8fb14edc1.tar.gz
Catch std::exception instead of armnn::Exception
Signed-off-by: Derek Lamberti <derek.lamberti@arm.com> Change-Id: I89ae4f3b607ccb83f1bf16e085c805d5fc5cf89c
Diffstat (limited to 'ArmnnDevice.cpp')
-rw-r--r--ArmnnDevice.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/ArmnnDevice.cpp b/ArmnnDevice.cpp
index a03d9cc9..34019c32 100644
--- a/ArmnnDevice.cpp
+++ b/ArmnnDevice.cpp
@@ -64,7 +64,7 @@ ArmnnDevice::ArmnnDevice(DriverOptions options)
{
m_ClTunedParameters->Load(m_Options.GetClTunedParametersFile().c_str());
}
- catch (const armnn::Exception& error)
+ catch (std::exception& error)
{
// This is only a warning because the file won't exist the first time you are generating it.
ALOGW("ArmnnDevice: Failed to load CL tuned parameters file '%s': %s",
@@ -77,6 +77,10 @@ ArmnnDevice::ArmnnDevice(DriverOptions options)
{
ALOGE("ArmnnDevice: Failed to setup CL runtime: %s. Device will be unavailable.", error.what());
}
+ catch (std::exception& error)
+ {
+ ALOGE("ArmnnDevice: Unknown exception: %s. Device will be unavailable.", error.what());
+ }
#endif
runtimeOptions.m_EnableGpuProfiling = m_Options.IsGpuProfilingEnabled();
m_Runtime = armnn::IRuntime::Create(runtimeOptions);