From ec82b466818ca7dda17e98a65e74f8cb5f49064d Mon Sep 17 00:00:00 2001 From: generatedunixname89002005307016 Date: Thu, 2 Jul 2020 17:42:41 -0700 Subject: [PATCH] suppress errors in `vision/fair/pytorch3d` Summary: Automatic run to suppress type errors. #pyreupgrade Differential Revision: D22369027 fbshipit-source-id: 2beb1a43e429a0850944a8849d416bedefd516ed --- pytorch3d/ops/knn.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pytorch3d/ops/knn.py b/pytorch3d/ops/knn.py index ad68f1da..8dd9d86a 100644 --- a/pytorch3d/ops/knn.py +++ b/pytorch3d/ops/knn.py @@ -53,6 +53,7 @@ class _knn_points(Function): in p2 has fewer than K points and where a cloud in p1 has fewer than P1 points. """ + # pyre-fixme[16]: Module `pytorch3d` has no attribute `_C`. idx, dists = _C.knn_points_idx(p1, p2, lengths1, lengths2, K, version) # sort KNN in ascending order if K > 1