Skip to content

Commit c28d97f

Browse files
committed
update
1 parent 800613a commit c28d97f

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

.github/workflows/build-test-linux-x86_64.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,9 @@ jobs:
426426
set -euo pipefail
427427
pushd .
428428
cd tests/py/dynamo
429-
python -m pytest -ra -n 0 --junitxml=${RUNNER_TEST_RESULTS_DIR}/l2_dynamo_plugins_tests_results.xml automatic_plugin/
429+
python -m pytest -ra --junitxml=${RUNNER_TEST_RESULTS_DIR}/l2_dynamo_plugins_tests_results.xml automatic_plugin/test_automatic_plugin.py
430+
python -m pytest -ra --junitxml=${RUNNER_TEST_RESULTS_DIR}/l2_dynamo_plugins_tests_results.xml automatic_plugin/test_automatic_plugin_with_attrs.py
431+
python -m pytest -ra --junitxml=${RUNNER_TEST_RESULTS_DIR}/l2_dynamo_plugins_tests_results.xml automatic_plugin/test_flashinfer_rmsnorm.py.py
430432
popd
431433
432434
L2-torchscript-tests:

tests/py/dynamo/automatic_plugin/test_automatic_plugin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ class TestAutomaticPlugin(DispatchTestCase):
7171
@parameterized.expand(
7272
[
7373
((64, 64), torch.float),
74+
((256, 256), torch.int),
7475
]
7576
)
7677
def test_mul_plugin_float(self, input_shape, dtype):

tests/py/dynamo/automatic_plugin/test_automatic_plugin_with_attrs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ class TestAutomaticPlugin(DispatchTestCase):
7272
@parameterized.expand(
7373
[
7474
((64, 64), torch.float),
75+
((256, 256), torch.int),
7576
]
7677
)
7778
def test_scale_mul_plugin_float(self, input_shape, dtype):

tests/py/dynamo/automatic_plugin/test_flashinfer_rmsnorm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class TestAutomaticPlugin(DispatchTestCase):
4545
@parameterized.expand(
4646
[
4747
((64, 64), (64,), torch.float16),
48+
((256, 256), (256,), torch.float16),
4849
]
4950
)
5051
def test_rmsnorm_float(self, input_shape, weight_shape, data_type):

0 commit comments

Comments
 (0)