Skip to content

Commit

Permalink
[CI] Fix versioning of h2d tests
Browse files Browse the repository at this point in the history
ghstack-source-id: faa425ca71953c1627690e08cf691683f78694d3
Pull Request resolved: #1053
  • Loading branch information
vmoens committed Oct 21, 2024
1 parent 1659518 commit f5b9ab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/common/h2d_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def default_device():

@pytest.mark.parametrize("consolidated", [False, True])
@pytest.mark.skipif(
TORCH_VERSION < version.parse("2.5.0"), reason="requires torch>=2.5"
TORCH_VERSION < version.parse("2.5.1"), reason="requires torch>=2.5"
)
class TestTo:
def test_to(self, benchmark, consolidated, td, default_device):
Expand Down

1 comment on commit f5b9ab5

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'GPU Benchmark Results'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: f5b9ab5 Previous: 1659518 Ratio
benchmarks/common/common_ops_test.py::test_membership_stacked_nested_last 123195.74795410734 iter/sec (stddev: 7.413245444371265e-7) 337582.3769099264 iter/sec (stddev: 4.005979844156959e-7) 2.74
benchmarks/common/common_ops_test.py::test_membership_stacked_nested_leaf_last 124380.47121157435 iter/sec (stddev: 0.0000016228110103494922) 345481.4957472215 iter/sec (stddev: 2.801689701873997e-7) 2.78

This comment was automatically generated by workflow using github-action-benchmark.

CC: @vmoens

Please sign in to comment.