Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/unit_tests/ssm/test_gated_delta_net.py
Original file line number Diff line number Diff line change
Expand Up @@ -1446,6 +1446,7 @@ def test_fused_and_unfused_forward_chunkwise_cp_match(self):
)
assert fused_bias == unfused_bias

@pytest.mark.flaky_in_dev
def test_fused_and_unfused_backward_chunkwise_cp_match(self):
unfused_gdn = self._build_gdn(gdn_pre_gated_delta_rule_fusion=False)
fused_gdn = self._build_gdn(gdn_pre_gated_delta_rule_fusion=True)
Expand Down Expand Up @@ -1520,6 +1521,7 @@ def test_fused_and_unfused_packed_forward_chunkwise_cp_match(self):
)
assert fused_bias == unfused_bias

@pytest.mark.flaky_in_dev
def test_fused_and_unfused_packed_backward_chunkwise_cp_match(self):
unfused_gdn = self._build_gdn(gdn_pre_gated_delta_rule_fusion=False)
fused_gdn = self._build_gdn(gdn_pre_gated_delta_rule_fusion=True)
Expand Down
Loading