fix incorrect variable naming (#362)

Summary: Pull Request resolved: https://github.com/facebookresearch/pytorch3d/pull/362

Reviewed By: bottler

Differential Revision: D23712242

Pulled By: nikhilaravi

fbshipit-source-id: 1c4184c8482049991356be7dbc9755b0c2018a1d
This commit is contained in:
z003yctd 2020-09-17 16:49:35 -07:00 committed by Facebook GitHub Bot
parent de77e426eb
commit e40c2167ae

View File

@ -136,8 +136,8 @@ RasterizeMeshesNaive(
torch::Tensor RasterizeMeshesBackwardCpu(
const torch::Tensor& face_verts,
const torch::Tensor& pix_to_face,
const torch::Tensor& grad_bary,
const torch::Tensor& grad_zbuf,
const torch::Tensor& grad_bary,
const torch::Tensor& grad_dists,
const bool perspective_correct,
const bool clip_barycentric_coords);
@ -146,8 +146,8 @@ torch::Tensor RasterizeMeshesBackwardCpu(
torch::Tensor RasterizeMeshesBackwardCuda(
const torch::Tensor& face_verts,
const torch::Tensor& pix_to_face,
const torch::Tensor& grad_bary,
const torch::Tensor& grad_zbuf,
const torch::Tensor& grad_bary,
const torch::Tensor& grad_dists,
const bool perspective_correct,
const bool clip_barycentric_coords);