mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-02 20:02:49 +08:00
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:
parent
de77e426eb
commit
e40c2167ae
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user