Skip to content

Commit 2ef724b

Browse files
committed
Remove vmap from kabsch
1 parent 34dfeb9 commit 2ef724b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

utils/rmsd.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def kabsch_align(P, Q):
4343

4444

4545
@jax.jit
46-
@jax.vmap
4746
def kabsch_rmsd(P, Q):
4847
P_aligned, Q_aligned = kabsch_align(P, Q)
4948
return jnp.sqrt(jnp.sum(jnp.square(P_aligned - Q_aligned)) / P.shape[0])

0 commit comments

Comments
 (0)