Skip to content

Commit 938b093

Browse files
committed
fixes
1 parent efe8c61 commit 938b093

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

iron/applications/llama_3.2_1b/test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ def test_llama_3_2_1b(prompt_len, num_tokens):
4141
shell=True,
4242
capture_output=True,
4343
text=True,
44-
timeout=300,
4544
)
4645

46+
print(result.stdout)
47+
print(result.stderr)
48+
4749
assert (
4850
result.returncode == 0
4951
), f"Command failed with return code {result.returncode}\nStderr: {result.stderr}"
50-
51-
print(result.stdout)

iron/operators/gemv/design.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from aie.extras.context import mlir_mod_ctx
88
from aie.dialects.aie import *
99
from aie.dialects.aiex import *
10+
import aie.dialects.index as index
1011
from aie.helpers.dialects.scf import _for as range_
1112
from aie.iron import Kernel, ObjectFifo, Program, Runtime, Worker
1213
from aie.iron.placers import SequentialPlacer

0 commit comments

Comments
 (0)