Summary: Run `/dev/linter.sh` to fix linting

Reviewed By: nikhilaravi

Differential Revision: D20584037

fbshipit-source-id: 69e45b33d22e3d54b6d37c3c35580bb3e9dc50a5
This commit is contained in:
Georgia Gkioxari
2020-03-21 17:55:21 -07:00
committed by Facebook GitHub Bot
parent 6d34e1c60d
commit 03f441e7ca
4 changed files with 18 additions and 10 deletions

View File

@@ -291,7 +291,7 @@ class TestSamplePoints(unittest.TestCase):
if sampled_weights.min() <= 0:
return False
return True
def test_verts_nan(self):
num_verts = 30
num_faces = 50
@@ -300,14 +300,19 @@ class TestSamplePoints(unittest.TestCase):
verts = torch.rand(
(num_verts, 3), dtype=torch.float32, device=device
)
# randomly assign an invalid type
# randomly assign an invalid type
verts[torch.randperm(num_verts)[:10]] = float(invalid)
faces = torch.randint(
num_verts, size=(num_faces, 3), dtype=torch.int64, device=device
num_verts,
size=(num_faces, 3),
dtype=torch.int64,
device=device,
)
meshes = Meshes(verts=[verts], faces=[faces])
with self.assertRaisesRegex(ValueError, "Meshes contain nan or inf."):
with self.assertRaisesRegex(
ValueError, "Meshes contain nan or inf."
):
sample_points_from_meshes(
meshes, num_samples=100, return_normals=True
)