Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a bug when the device of manolayer is cpu and use_pca=False #26

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

yl-1993
Copy link

@yl-1993 yl-1993 commented Oct 26, 2022

When use_pca=False, if the device of MANO layer is CPU, it will raise error on this line. This error is due to self.th_posedirs is on cpu device but th_pose_map is on cuda device.

The reason lies in the output value of batch_rotprojs, th_pose_map, is always on GPU. Because inside this function, it always converts the output to GPU. After this PR, the output value will remain on its original device after batch_rotprojs.

In addition, the torch.svd() is deprecated in favor of torch.linalg.svd(), which follows the same convention as np.linalg.svd to output (U, S, V_T).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant