Skip to content

Commit

Permalink
Fix auto-merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
runame committed Nov 7, 2023
1 parent a70f4e0 commit ab33832
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_kfac.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ def test_kfac(

report_nonclose(ggn, kfac_mat)

# Check that input covariances were not computed
if exclude == "weight":
assert len(kfac._input_covariances) == 0


@mark.parametrize("shuffle", [False, True], ids=["", "shuffled"])
def test_kfac_mc(
Expand Down Expand Up @@ -91,10 +95,6 @@ def test_kfac_mc(

report_nonclose(ggn, kfac_mat, rtol=rtol, atol=atol)

# Check that input covariances were not computed
if exclude == "weight":
assert len(kfac._input_covariances) == 0


def test_kfac_one_datum(
kfac_expand_exact_one_datum_case: Tuple[
Expand Down

0 comments on commit ab33832

Please sign in to comment.