Skip to content

Commit 6a5106b

Browse files
committed
Rebase error fix
1 parent 29e2837 commit 6a5106b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

backends/qualcomm/export_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,9 @@ def build_executorch_binary(
517517
qnn_config.backend == QnnExecuTorchBackendType.kGpuBackend
518518
and not qnn_config.online_prepare
519519
):
520-
raise RuntimeError("Currently GPU backend only supports online_prepare.")
520+
raise RuntimeError(
521+
"Currently GPU backend only supports online_prepare. Please add --online_prepare flag."
522+
)
521523
if (
522524
qnn_config.backend == QnnExecuTorchBackendType.kLpaiBackend
523525
and qnn_config.online_prepare

backends/qualcomm/tests/test_qnn_delegate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9002,7 +9002,6 @@ def setup_environment():
90029002
)
90039003

90049004
args, ns_args = parser.parse_known_args(namespace=unittest)
9005-
args.validate(args)
90069005
TestQNN.host = args.host
90079006
TestQNN.device = args.device
90089007
TestQNN.soc_model = args.soc_model

0 commit comments

Comments
 (0)