You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the op, I make a copy of the input arrays so I can use the rmsd library's centering routine, which modifies arrays in place. Per the tensorflow tutorial, the input tensors are all const. I figured that was a limitation of the framework and went ahead and made the copy. Upon further inspection, it looks like you can request mutable inputs.
The text was updated successfully, but these errors were encountered:
In the op, I make a copy of the input arrays so I can use the rmsd library's centering routine, which modifies arrays in place. Per the tensorflow tutorial, the input tensors are all
const
. I figured that was a limitation of the framework and went ahead and made the copy. Upon further inspection, it looks like you can request mutable inputs.The text was updated successfully, but these errors were encountered: