aboutsummaryrefslogtreecommitdiff
path: root/shim/sl/canonical/DriverOptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shim/sl/canonical/DriverOptions.cpp')
-rw-r--r--shim/sl/canonical/DriverOptions.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/shim/sl/canonical/DriverOptions.cpp b/shim/sl/canonical/DriverOptions.cpp
index 5c73edfaa..15d08d8cb 100644
--- a/shim/sl/canonical/DriverOptions.cpp
+++ b/shim/sl/canonical/DriverOptions.cpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
+// Copyright © 2022-2023 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
@@ -254,13 +254,8 @@ DriverOptions::DriverOptions()
// If no backends have been specified then the default value is GpuAcc.
if (backends.empty())
{
- VLOG(DRIVER) << "No backends have been specified:";
- std::cout << optionsDesc.help() << std::endl
- << "Unable to start:" << std::endl
- << "No backends have been specified" << std::endl;
- m_ShouldExit = true;
- m_ExitCode = EXIT_FAILURE;
- return;
+ VLOG(DRIVER) << "No backends have been specified, defaulting to GpuAcc.";
+ m_Backends.emplace_back("GpuAcc");
}
if (!unsupportedOperationsAsString.empty())