Skip to content

Commit

Permalink
Move harness back to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yamaguchi1024 committed Apr 7, 2022
1 parent 3a0cd0b commit 58917ff
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tests/gemmini/conv/test_gemmini_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from exo.platforms.gemmini import *
from exo.platforms.harness_gemmini import GemmTestBuilder
from ..harness_gemmini import GemmTestBuilder

pytest.skip("skipping gemmini tests that are bitrotted",
allow_module_level=True)
Expand Down
2 changes: 1 addition & 1 deletion tests/gemmini/conv/test_gemmini_conv_ae.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations
import pytest
from exo.platforms.gemmini import *
from exo.platforms.harness_gemmini import GemmTestBuilder
from ..harness_gemmini import GemmTestBuilder


def conv_algorithm():
Expand Down
2 changes: 1 addition & 1 deletion tests/gemmini/conv/test_gemmini_conv_max_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from exo.platforms.gemmini import *
from exo.platforms.harness_gemmini import GemmTestBuilder
from ..harness_gemmini import GemmTestBuilder

pytest.skip("skipping gemmini tests that are bitrotted",
allow_module_level=True)
Expand Down
2 changes: 1 addition & 1 deletion tests/gemmini/conv/test_gemmini_conv_no_pad.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from exo.platforms.gemmini import *
from exo.platforms.harness_gemmini import GemmTestBuilder
from ..harness_gemmini import GemmTestBuilder


def conv_on_cpu():
Expand Down
2 changes: 1 addition & 1 deletion tests/gemmini/conv/test_gemmini_conv_stride1.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from exo.platforms.gemmini import *
from exo.platforms.harness_gemmini import GemmTestBuilder
from ..harness_gemmini import GemmTestBuilder


def conv_on_cpu():
Expand Down
2 changes: 1 addition & 1 deletion tests/gemmini/conv/test_gemmini_conv_stride2.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from exo.platforms.gemmini import *
from exo.platforms.harness_gemmini import GemmTestBuilder
from ..harness_gemmini import GemmTestBuilder

pytest.skip("skipping gemmini tests that are bitrotted",
allow_module_level=True)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/gemmini/matmul/test_gemmini_matmul_ae.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations
import pytest
from exo.platforms.gemmini import *
from exo.platforms.harness_gemmini import GemmTestBuilder
from ..harness_gemmini import GemmTestBuilder


def matmul_algorithm():
Expand Down
2 changes: 1 addition & 1 deletion tests/gemmini/matmul/test_gemmini_matmul_paper.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from exo.platforms.gemmini import *
from exo.platforms.harness_gemmini import GemmTestBuilder
from ..harness_gemmini import GemmTestBuilder


def new_config_ld():
Expand Down
2 changes: 1 addition & 1 deletion tests/gemmini/matmul/test_gemmini_resnet_matmul.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from exo.platforms.gemmini import *
from exo.platforms.harness_gemmini import GemmTestBuilder
from ..harness_gemmini import GemmTestBuilder

def matmul_cpu():
@proc
Expand Down
2 changes: 1 addition & 1 deletion tests/gemmini/test_gemmini_instr.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from exo.platforms.gemmini import *
from exo.platforms.harness_gemmini import GemmTestBuilder
from .harness_gemmini import GemmTestBuilder

pytest.skip("skipping gemmini tests that are bitrotted",
allow_module_level=True)
Expand Down

0 comments on commit 58917ff

Please sign in to comment.