Skip to content

Commit

Permalink
Skip test_sharded_resnet_block_with_iree
Browse files Browse the repository at this point in the history
  • Loading branch information
marbre committed Dec 16, 2024
1 parent 4aa7565 commit 38ef30b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

import pytest
import sys

from pathlib import Path
import tempfile

Expand All @@ -19,7 +22,6 @@
import iree.runtime
from typing import List, Optional
import os
import pytest

vm_context: iree.runtime.VmContext = None

Expand Down Expand Up @@ -231,6 +233,9 @@ def run_test_sharded_resnet_block_with_iree(
@pytest.mark.xfail(
torch.__version__ >= (2, 5), reason="https://github.com/nod-ai/shark-ai/issues/683"
)
@pytest.mark.skipif(
sys.platform == "win32", reason="https://github.com/nod-ai/shark-ai/issues/698"
)
def test_sharded_resnet_block_with_iree(
mlir_path: Optional[Path],
module_path: Optional[Path],
Expand Down

0 comments on commit 38ef30b

Please sign in to comment.