Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
gagank1 committed Dec 19, 2024
1 parent 89b02e4 commit 1b0bd34
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
# limitations under the License.

import math
import re
import tarfile
from copy import deepcopy
from pathlib import Path
from typing import List, Tuple
from unittest import mock
import re

import pytest
import torch
Expand Down Expand Up @@ -261,7 +261,9 @@ def __getitem__(self, idx):
return {"text": self.input_ids[idx], "attention_mask": self.mask[idx]}


@pytest.mark.xfail(re.search(r"h[1-9]00", torch.cuda.get_device_name().lower()) is not None, reason="Known issue on H100 GPUs")
@pytest.mark.xfail(
re.search(r"h[1-9]00", torch.cuda.get_device_name().lower()) is not None, reason="Known issue on H100 GPUs"
)
def test_geneformer_nemo1_v_nemo2_inference_golden_values(
geneformer_config: GeneformerConfig, cells: List[List[str]], seed: int = 42
):
Expand Down

0 comments on commit 1b0bd34

Please sign in to comment.