Commit ec82b466 authored by generatedunixname89002005307016's avatar generatedunixname89002005307016 Committed by Facebook GitHub Bot
Browse files

suppress errors in `vision/fair/pytorch3d`

Summary:
Automatic run to suppress type errors.
 #pyreupgrade

Differential Revision: D22369027

fbshipit-source-id: 2beb1a43e429a0850944a8849d416bedefd516ed
parent 806ca361
...@@ -53,6 +53,7 @@ class _knn_points(Function): ...@@ -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. 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) idx, dists = _C.knn_points_idx(p1, p2, lengths1, lengths2, K, version)
# sort KNN in ascending order if K > 1 # sort KNN in ascending order if K > 1
......
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