Skip to content

Commit 428fcae

Browse files
committed
Rebase error fix
1 parent 157b087 commit 428fcae

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
@@ -8984,7 +8984,6 @@ def setup_environment():
89848984
)
89858985

89868986
args, ns_args = parser.parse_known_args(namespace=unittest)
8987-
args.validate(args)
89888987
TestQNN.host = args.host
89898988
TestQNN.device = args.device
89908989
TestQNN.soc_model = args.soc_model

0 commit comments

Comments
 (0)