Commit af457b95 authored by Jennifer Wei's avatar Jennifer Wei
Browse files

adds mpi4py to environment and removes stray print statements from test

parent 9b6c1dac
...@@ -32,6 +32,7 @@ dependencies: ...@@ -32,6 +32,7 @@ dependencies:
- bioconda::kalign2==2.04 - bioconda::kalign2==2.04
- pytorch::pytorch=1.12.* - pytorch::pytorch=1.12.*
- pip: - pip:
- mpi4py==3.1.5
- deepspeed==0.12.4 - deepspeed==0.12.4
- dm-tree==0.1.6 - dm-tree==0.1.6
- git+https://github.com/NVIDIA/dllogger.git - git+https://github.com/NVIDIA/dllogger.git
......
...@@ -113,7 +113,6 @@ class TestPermutation(unittest.TestCase): ...@@ -113,7 +113,6 @@ class TestPermutation(unittest.TestCase):
aligns, _ = compute_permutation_alignment(out, batch, aligns, _ = compute_permutation_alignment(out, batch,
batch) batch)
print(f"##### aligns is {aligns}")
possible_outcome = [[(0, 1), (1, 0), (2, 3), (3, 4), (4, 2)], [(0, 0), (1, 1), (2, 3), (3, 4), (4, 2)]] possible_outcome = [[(0, 1), (1, 0), (2, 3), (3, 4), (4, 2)], [(0, 0), (1, 1), (2, 3), (3, 4), (4, 2)]]
wrong_outcome = [[(0, 1), (1, 0), (2, 4), (3, 2), (4, 3)], [(0, 0), (1, 1), (2, 2), (3, 3), (4, 4)]] wrong_outcome = [[(0, 1), (1, 0), (2, 4), (3, 2), (4, 3)], [(0, 0), (1, 1), (2, 2), (3, 3), (4, 4)]]
self.assertIn(aligns, possible_outcome) self.assertIn(aligns, possible_outcome)
...@@ -163,7 +162,6 @@ class TestPermutation(unittest.TestCase): ...@@ -163,7 +162,6 @@ class TestPermutation(unittest.TestCase):
aligns, per_asym_residue_index = compute_permutation_alignment(out, aligns, per_asym_residue_index = compute_permutation_alignment(out,
batch, batch,
batch) batch)
print(f"##### aligns is {aligns}")
labels = split_ground_truth_labels(batch) labels = split_ground_truth_labels(batch)
labels = merge_labels(per_asym_residue_index, labels, aligns, labels = merge_labels(per_asym_residue_index, labels, aligns,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment