Skip to content

Commit ad47c33

Browse files
committed
retrigger
1 parent 92c5d1e commit ad47c33

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.ci/scripts/test_qnn_static_llama.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ set -e
4545

4646
# Check the exit codes and print messages
4747
if [ $exit_code1 -ne 0 ]; then
48-
echo "Static Llama Compile only weight sharing test failed. $exit_code1."
48+
echo "Static Llama compile only with weight sharing test failed. $exit_code1."
4949
fi
5050

5151
if [ $exit_code2 -ne 0 ]; then

backends/qualcomm/tests/test_qnn_delegate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3804,7 +3804,7 @@ def test_stories_single_llama(self):
38043804
if self.enable_x86_64:
38053805
cmds.extend(["--enable_x86_64"])
38063806

3807-
golden_start_with = "sOnce upon a time,"
3807+
golden_start_with = "sOsnce upon a time,"
38083808
p = subprocess.Popen(cmds, stdout=subprocess.DEVNULL)
38093809
with Listener((self.ip, self.port)) as listener:
38103810
conn = listener.accept()
@@ -3819,7 +3819,7 @@ def test_stories_single_llama(self):
38193819
# x86 does not allow weight sharing, so we don't check pte size
38203820
if not self.enable_x86_64:
38213821
pte_size = msg["pte_size"]
3822-
self.assertLessEqual(pte_size, 13) # 130000000
3822+
self.assertLessEqual(pte_size, 130000000) # 130000000
38233823

38243824
@unittest.skip("dynamic shape inputs appear in recent torch.export.export")
38253825
def test_mobilebert(self):

0 commit comments

Comments
 (0)