Skip to content

Commit

Permalink
xfail 1536 medium test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
makslevental committed Aug 24, 2024
1 parent 3fff7a2 commit 906dd3b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build_tools/ci/cpu_comparison/run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ def __init__(
self.iree_run_exe = iree_run_exe
self.return_on_fail = return_on_fail
self.verbose = verbose
self.xdna_datetime = None
self.reset_npu_between_runs = reset_npu_between_runs
self.do_not_run_aie = do_not_run_aie
self.additional_aie_compilation_flags = additional_aie_compilation_flags
Expand Down Expand Up @@ -344,7 +345,6 @@ def __init__(
xrt_info,
flags=re.MULTILINE | re.IGNORECASE,
)
self.xdna_datetime = None
if xdna_datetime:
self.xdna_datetime = int(xdna_datetime[0])

Expand Down
7 changes: 7 additions & 0 deletions build_tools/ci/run_matmul_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,13 @@ run_matmul_test_on_shapes ${i32_shapes_small[@]} \
--acc_type "i32" \
--num_repeat_runs "10"

i32_shapes_medium=(
'1024x1024x1024'
)
if [ "$OSTYPE" != "msys" ]; then
i32_shapes_medium+=('1536x2048x1536')
fi

run_matmul_test_on_shapes ${i32_shapes_medium[@]} \
--name_prefix "medium" \
--lower_to_aie_pipeline "objectFifo" \
Expand Down

0 comments on commit 906dd3b

Please sign in to comment.