Skip to content

Commit

Permalink
Deactivate Jacobian computation for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoelzle committed Sep 23, 2024
1 parent 3fc38d5 commit ef3bf7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/demo_planar_hsa_motor2ee_jacobian.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,6 @@ def jac_phi2chi_static_model(phi: Array) -> Tuple[Array, Dict[str, Array]]:
q, aux = jitted_phi2q_static_model_fn(phi)
print("phi", phi, "q", q)

J_u2chi_autodiff, aux = J_phi2chi_autodiff_fn(phi)
J_u2chi, aux = J_phi2chi_fn(phi)
print("J_u2chi:\n", J_u2chi, "\nJ_u2chi_autodiff:\n", J_u2chi_autodiff)
# J_phi2chi_autodiff, aux = J_phi2chi_autodiff_fn(phi)
# J_phi2chi, aux = J_phi2chi_fn(phi)
# print("J_phi2chi:\n", J_phi2chi, "\nJ_phi2chi_autodiff:\n", J_phi2chi_autodiff)

0 comments on commit ef3bf7c

Please sign in to comment.