Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 17 additions & 8 deletions backends/arm/test/ops/test_slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
# LICENSE file in the root directory of this source tree.


import os
import sys
from typing import Tuple

import torch
Expand Down Expand Up @@ -386,15 +388,22 @@ def test_slice_tensor_u85_INT_step(test_data: Tuple):
@common.parametrize(
"test_data",
test_data_step_int | test_data_step_fp,
xfails={
"arange_fp32_2d_step4": common.xfail_if_model_converter_version(
">=0.10.0",
reason=(
"MLCE-1969: Emlayer 0.10 Interval memory planner corrupts "
"multi-input CONCAT output"
xfails=(
{
"arange_fp32_2d_step4": common.xfail_if_dependency_version(
"ai-ml-emulation-layer-for-vulkan",
"==0.10.0",
reason=(
"MLCE-1969: Emlayer 0.10.0 Interval memory planner corrupts "
"multi-input CONCAT output"
),
raises=AssertionError,
),
),
},
}
if sys.platform == "linux"
and os.environ.get("VMEL_MEMORY_PLANNER") not in ("BestFit", "Linear")
else {}
),
)
@common.SkipIfNoModelConverter
def test_slice_tensor_vgf_no_quant_step(test_data: Tuple):
Expand Down
Loading