We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As described in the image. type returned by get_joint_positions() is a tensor, which cause type conflict for lula inverse kinematics compute.
Please add this to the next update.
warm_start = self._joints_view.get_joint_positions().cpu().numpy() need to first take position out of gpu memory for conversion to numpy.
warm_start = self._joints_view.get_joint_positions().cpu().numpy()
The text was updated successfully, but these errors were encountered:
Any contributor please make a reply so that I know you've seen it, and I'll close the thread.
Sorry, something went wrong.
No branches or pull requests
As described in the image.
type returned by get_joint_positions() is a tensor, which cause type conflict for lula inverse kinematics compute.
Please add this to the next update.
CORRECTION:
warm_start = self._joints_view.get_joint_positions().cpu().numpy()
need to first take position out of gpu memory for conversion to numpy.
The text was updated successfully, but these errors were encountered: