Skip to content

Commit

Permalink
Un-xfail geneformer on H100 test (NVIDIA#563)
Browse files Browse the repository at this point in the history
## Summary
Un-xfails a geneformer H100 test.

## Details
After base image upgrade to pytorch fw 24.12
(NVIDIA#553) , H100 geneformer
issue is fixed.

## Usage and Testing
```python
pytest ./sub-packages/bionemo-geneformer/tests/bionemo/geneformer/test_model.py::test_geneformer_nemo1_v_nemo2_inference_golden_values
```

Signed-off-by: Danny <dreidenbach@nvidia.com>
  • Loading branch information
trvachov authored and nvdreidenbach committed Jan 2, 2025
1 parent d8aad26 commit 794f8d6
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
# limitations under the License.

import math
import re
import tarfile
from copy import deepcopy
from pathlib import Path
Expand Down Expand Up @@ -261,9 +260,6 @@ 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"
)
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 794f8d6

Please sign in to comment.