Skip to content
Merged
Show file tree
Hide file tree
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
20 changes: 10 additions & 10 deletions ci/jenkins/docker-images.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@

# This data file is read during when Jenkins runs job to determine docker images.
[jenkins]
ci_arm: tlcpack/ci-arm:20240126-070121-8ade9c30e
ci_cortexm: tlcpack/ci-cortexm:20240126-070121-8ade9c30e
ci_cpu: tlcpack/ci_cpu:20240322-060059-89cd74c07
ci_gpu: tlcpack/ci-gpu:20240126-070121-8ade9c30e
ci_hexagon: tlcpack/ci-hexagon:20240126-070121-8ade9c30e
ci_i386: tlcpack/ci-i386:20240126-070121-8ade9c30e
ci_lint: tlcpack/ci-lint:20240126-070121-8ade9c30e
ci_minimal: tlcpack/ci-minimal:20240126-070121-8ade9c30e
ci_riscv: tlcpack/ci-riscv:20240126-070121-8ade9c30e
ci_wasm: tlcpack/ci-wasm:20240126-070121-8ade9c30e
ci_arm: tlcpack/ci-arm:20240428-060115-0b09ed018
ci_cortexm: tlcpack/ci-cortexm:20240428-060115-0b09ed018
ci_cpu: tlcpack/ci_cpu:20240428-060115-0b09ed018
ci_gpu: tlcpack/ci-gpu:20240428-060115-0b09ed018
ci_hexagon: tlcpack/ci-hexagon:20240428-060115-0b09ed018
ci_i386: tlcpack/ci-i386:20240428-060115-0b09ed018
ci_lint: tlcpack/ci-lint:20240428-060115-0b09ed018
ci_minimal: tlcpack/ci-minimal:20240428-060115-0b09ed018
ci_riscv: tlcpack/ci-riscv:20240428-060115-0b09ed018
ci_wasm: tlcpack/ci-wasm:20240428-060115-0b09ed018
2 changes: 1 addition & 1 deletion tests/micro/zephyr/test_zephyr.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ def test_debugging_enabled(workspace_dir):
def test_qemu_make_fail(workspace_dir, board, microtvm_debug, serial_number):
"""Testing QEMU make fail."""
if not utils.ZEPHYR_BOARDS[board]["is_qemu"]:
pytest.skip(msg="Only for QEMU targets.")
pytest.skip("Only for QEMU targets.")

build_config = {"debug": microtvm_debug}
shape = (10,)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_resnet50(hexagon_launcher):
model_params = "resnet50_fp16.params"

if not os.path.exists(model_json):
pytest.skip(msg="Run python export_models.py first.")
pytest.skip("Run python export_models.py first.")

with open(model_json, "r") as file:
mod = tvm.ir.load_json(file.read())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
def load_model():
"""Load renset50 model."""
if not os.path.exists(MODEL_JSON):
pytest.skip(msg="Run python export_models.py first.")
pytest.skip("Run python export_models.py first.")

with open(MODEL_JSON, "r") as file:
mod = tvm.ir.load_json(file.read())
Expand Down Expand Up @@ -172,7 +172,7 @@ def test_resnet50(hexagon_launcher):
pytest.skip("Skipping test since it takes too long in CI.")

if not os.path.exists(MODEL_JSON):
pytest.skip(msg="Run python export_models.py first.")
pytest.skip("Run python export_models.py first.")

mod, params = load_model()

Expand Down
10 changes: 5 additions & 5 deletions tests/python/contrib/test_hexagon/test_meta_schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def main(a: T.handle, b: T.handle, c: T.handle) -> None: # type: ignore
def test_builder_runner(hexagon_launcher):
"""Test builder and runner."""
if hexagon_launcher.is_simulator():
pytest.skip(msg="Tuning on simulator not supported.")
pytest.skip("Tuning on simulator not supported.")

mod = MatmulModule

Expand Down Expand Up @@ -191,7 +191,7 @@ def verify_dense(sch, target, m_size, n_size, k_size, hexagon_session):
def test_vrmpy_dense(hexagon_launcher):
"""Test vector reduce muliply dense."""
if hexagon_launcher.is_simulator():
pytest.skip(msg="Tuning on simulator not supported.")
pytest.skip("Tuning on simulator not supported.")

do_tune = True

Expand Down Expand Up @@ -302,7 +302,7 @@ def main( # type: ignore
def test_vrmpy_dense_auto_tensorize(hexagon_launcher):
"""Test VRMPY dense operator."""
if hexagon_launcher.is_simulator():
pytest.skip(msg="Tuning on simulator not supported.")
pytest.skip("Tuning on simulator not supported.")

m_size, n_size, k_size = 128, 768, 768
workload = te.create_prim_func(dense_compute(m_size, n_size, k_size))
Expand Down Expand Up @@ -367,7 +367,7 @@ def test_vrmpy_dense_auto_tensorize(hexagon_launcher):
def test_conv2d_relay_auto_schedule(hexagon_launcher):
"""Test conv2d using auto schedule."""
if hexagon_launcher.is_simulator():
pytest.skip(msg="Tuning on simulator not supported.")
pytest.skip("Tuning on simulator not supported.")

i_size, o_size, h_size, w_size = 64, 64, 56, 56
k_height_size = k_width_size = 3
Expand Down Expand Up @@ -447,7 +447,7 @@ def test_dense_relay_auto_schedule(hexagon_launcher):
dense on Hexagon is extremely slow.
"""
if hexagon_launcher.is_simulator():
pytest.skip(msg="Tuning on simulator not supported.")
pytest.skip("Tuning on simulator not supported.")

target_hexagon = tvm.target.hexagon("v69")
target = tvm.target.Target(target_hexagon, host=target_hexagon)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_cast_fp16_fp32_slice(
Top level testing function for cast fp16 to fp32
"""
if hexagon_session.is_simulator():
pytest.skip(msg="Due to https://github.com/apache/tvm/issues/11957")
pytest.skip("Due to https://github.com/apache/tvm/issues/11957")

cast_input = te.placeholder(input_shape, name="A", dtype=dtype)
cast_output = sl.cast_f16_f32_compute(cast_input)
Expand Down Expand Up @@ -163,7 +163,7 @@ def test_cast_fp32_fp16_slice(
Top level testing function for cast fp32 to fp16
"""
if hexagon_session.is_simulator():
pytest.skip(msg="Due to https://github.com/apache/tvm/issues/11957")
pytest.skip("Due to https://github.com/apache/tvm/issues/11957")

cast_input = te.placeholder(input_shape, name="A", dtype=dtype)
cast_output = sl.cast_f32_f16_compute(cast_input)
Expand Down
1 change: 1 addition & 0 deletions tests/python/relax/test_codegen_cudnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ def test_conv2d_offload(data_shape, weight_shape, dtype, with_bias, activation):
tvm.testing.assert_allclose(out, ref, rtol=1e-2, atol=1e-2)


@pytest.mark.skip(reason="flaky test")
@pytest.mark.parametrize(
"data_shape, weight_shape, dtype, with_bias, activation",
[
Expand Down