Skip to content

Commit 34ea6d9

Browse files
committed
test fail
1 parent d565402 commit 34ea6d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backends/qualcomm/tests/test_qnn_delegate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3804,7 +3804,7 @@ def test_stories_single_llama(self):
38043804
elif self.enable_x86_64:
38053805
cmds.extend(["--enable_x86_64"])
38063806

3807-
golden_start_with = "Once upon a time,"
3807+
golden_start_with = "Osnce upon a time,"
38083808
p = subprocess.Popen(cmds, stdout=subprocess.DEVNULL)
38093809
with Listener((self.ip, self.port)) as listener:
38103810
conn = listener.accept()

examples/qualcomm/oss_scripts/llama/llama.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ def compile(args, pte_filename, tokenizer):
655655
backend_options=backend_options,
656656
shared_buffer=args.shared_buffer,
657657
multiple_graphs=True,
658-
weight_sharing=not arg.enable_x86_64, # x86 emulator does not support weight sharing
658+
weight_sharing=not args.enable_x86_64, # x86 emulator does not support weight sharing
659659
graph_name=graph_name,
660660
)
661661
for graph_name in graph_names

0 commit comments

Comments
 (0)