Skip to content

Commit

Permalink
Revert env vars to default values
Browse files Browse the repository at this point in the history
Signed-off-by: erman-gurses <[email protected]>
  • Loading branch information
erman-gurses committed Sep 10, 2024
1 parent 14abe0b commit a65c11a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/kernel/wave/wave_e2e_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import torch
import json

_run_e2e = int(os.environ.get("WAVE_RUN_E2E_TESTS", 1))
_run_e2e = int(os.environ.get("WAVE_RUN_E2E_TESTS", 0))
require_e2e = pytest.mark.skipif(not _run_e2e, reason="e2e tests are disabled")
default_test_shapes = [(1, 128), (256, 64), (256, 128), (256, 256), (256, 1024)]

Expand Down
2 changes: 1 addition & 1 deletion tests/kernel/wave/wave_gemm_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import os
import json

_run_e2e = int(os.environ.get("WAVE_RUN_E2E_TESTS", 1))
_run_e2e = int(os.environ.get("WAVE_RUN_E2E_TESTS", 0))
require_e2e = pytest.mark.skipif(not _run_e2e, reason="e2e tests are disabled")
default_test_shapes = [(1024, 5120, 640), (2048, 10240, 1280), (4096, 20480, 2560)]

Expand Down

0 comments on commit a65c11a

Please sign in to comment.