unittest/multiprecision.cpp
Go to the documentation of this file.
1 //
2 // Copyright (c) 2020 INRIA
3 //
4 
5 #include "pinocchio/algorithm/rnea.hpp"
6 #include "pinocchio/algorithm/aba.hpp"
7 #include "pinocchio/algorithm/jacobian.hpp"
8 #include "pinocchio/algorithm/center-of-mass.hpp"
9 #include "pinocchio/algorithm/joint-configuration.hpp"
10 #include "pinocchio/algorithm/crba.hpp"
11 #include "pinocchio/algorithm/centroidal.hpp"
12 #include "pinocchio/parsers/sample-models.hpp"
13 
14 #include "pinocchio/math/multiprecision.hpp"
15 
16 #include <boost/multiprecision/cpp_dec_float.hpp>
17 #include <boost/math/special_functions/gamma.hpp>
18 
19 #include <iostream>
20 
21 #include <boost/test/unit_test.hpp>
22 #include <boost/utility/binary.hpp>
23 
24 BOOST_AUTO_TEST_SUITE(BOOST_TEST_MODULE)
25 
27 {
28  using namespace boost::multiprecision;
29 
30  // Operations at fixed precision and full numeric_limits support:
31  cpp_dec_float_100 b = 2;
32  std::cout << std::numeric_limits<cpp_dec_float_100>::digits << std::endl;
33  std::cout << std::numeric_limits<cpp_dec_float_100>::digits10 << std::endl;
34  // We can use any C++ std lib function, lets print all the digits as well:
35  std::cout << std::setprecision(std::numeric_limits<cpp_dec_float_100>::max_digits10)
36  << log(b) << std::endl; // print log(2)
37  // We can also use any function from Boost.Math:
38  std::cout << boost::math::tgamma(b) << std::endl;
39  // These even work when the argument is an expression template:
40  std::cout << boost::math::tgamma(b * b) << std::endl;
41  // And since we have an extended exponent range we can generate some really large
42  // numbers here (4.0238726007709377354370243e+2564):
43  std::cout << boost::math::tgamma(cpp_dec_float_100(1000)) << std::endl;
44 }
45 
47 {
48  typedef boost::multiprecision::cpp_dec_float_100 float_100;
49 
50  // Test Scalar cast
51  double initial_value = boost::math::constants::pi<double>();
52  float_100 value_100(initial_value);
53  double value_cast = value_100.convert_to<double>();
54  BOOST_CHECK(initial_value == value_cast);
55 
56  typedef Eigen::Matrix<float_100,Eigen::Dynamic,1> VectorFloat100;
57  static const Eigen::DenseIndex dim = 100;
58  Eigen::VectorXd initial_vec = Eigen::VectorXd::Random(dim);
59  VectorFloat100 vec_float_100 = initial_vec.cast<float_100>();
60  Eigen::VectorXd vec = vec_float_100.cast<double>();
61 
62  BOOST_CHECK(vec == initial_vec);
63 }
64 
65 #define BOOST_CHECK_IS_APPROX(double_field,multires_field,Scalar) \
66  BOOST_CHECK(double_field.isApprox(multires_field.cast<Scalar>()))
67 
68 BOOST_AUTO_TEST_CASE(test_mutliprecision)
69 {
70  using namespace pinocchio;
71 
72  Model model;
74  Data data(model);
75 
76  model.lowerPositionLimit.head<3>().fill(-1.);
77  model.upperPositionLimit.head<3>().fill( 1.);
78 
79  typedef boost::multiprecision::cpp_dec_float_100 float_100;
80  typedef ModelTpl<float_100> ModelMulti;
81  typedef DataTpl<float_100> DataMulti;
82 
83  ModelMulti model_multi = model.cast<float_100>();
84  DataMulti data_multi(model_multi);
85 
86  ModelMulti::ConfigVectorType q_multi = randomConfiguration(model_multi);
87  ModelMulti::TangentVectorType v_multi = ModelMulti::TangentVectorType::Random(model_multi.nv);
88  ModelMulti::TangentVectorType a_multi = ModelMulti::TangentVectorType::Random(model_multi.nv);
89  ModelMulti::TangentVectorType tau_multi = ModelMulti::TangentVectorType::Random(model_multi.nv);
90 
91  // Model::ConfigVectorType q = randomConfiguration(model);
92  // Model::TangentVectorType v = Model::TangentVectorType::Random(model.nv);
93  // Model::TangentVectorType a = Model::TangentVectorType::Random(model.nv);
94  // Model::TangentVectorType tau = Model::TangentVectorType::Random(model.nv);
95 
96  Model::ConfigVectorType q = q_multi.cast<double>();
97  Model::TangentVectorType v = v_multi.cast<double>();
98  Model::TangentVectorType a = a_multi.cast<double>();
99  Model::TangentVectorType tau = tau_multi.cast<double>();
100 
101  forwardKinematics(model_multi,data_multi,q_multi,v_multi,a_multi);
102  forwardKinematics(model,data,q,v,a);
103 
104  for(JointIndex joint_id = 1; joint_id < (JointIndex)model.njoints; ++joint_id)
105  {
106  BOOST_CHECK_IS_APPROX(data.oMi[joint_id],data_multi.oMi[joint_id],double);
107  BOOST_CHECK_IS_APPROX(data.v[joint_id],data_multi.v[joint_id],double);
108  BOOST_CHECK_IS_APPROX(data.a[joint_id],data_multi.a[joint_id],double);
109  }
110 
111  // Jacobians
112  computeJointJacobians(model_multi,data_multi,q_multi);
113  computeJointJacobians(model,data,q);
114 
115  BOOST_CHECK_IS_APPROX(data.J,data_multi.J,double);
116 
117  // Inverse Dynamics
118  rnea(model_multi,data_multi,q_multi,v_multi,a_multi);
119  rnea(model,data,q,v,a);
120 
121  BOOST_CHECK_IS_APPROX(data.tau,data_multi.tau,double);
122 
123  // Forward Dynamics
124  aba(model_multi,data_multi,q_multi,v_multi,tau_multi);
125  aba(model,data,q,v,tau);
126 
127  BOOST_CHECK_IS_APPROX(data.ddq,data_multi.ddq,double);
128 
129  // Mass matrix
130  crba(model_multi,data_multi,q_multi);
131  data_multi.M.triangularView<Eigen::StrictlyLower>()
132  = data_multi.M.transpose().triangularView<Eigen::StrictlyLower>();
133 
134  crba(model,data,q);
135  data.M.triangularView<Eigen::StrictlyLower>()
136  = data.M.transpose().triangularView<Eigen::StrictlyLower>();
137 
138  BOOST_CHECK_IS_APPROX(data.M,data_multi.M,double);
139 }
140 
141 BOOST_AUTO_TEST_SUITE_END()
const DataTpl< Scalar, Options, JointCollectionTpl >::TangentVectorType & aba(const ModelTpl< Scalar, Options, JointCollectionTpl > &model, DataTpl< Scalar, Options, JointCollectionTpl > &data, const Eigen::MatrixBase< ConfigVectorType > &q, const Eigen::MatrixBase< TangentVectorType1 > &v, const Eigen::MatrixBase< TangentVectorType2 > &tau)
The Articulated-Body algorithm. It computes the forward dynamics, aka the joint accelerations given t...
TangentVectorType tau
Vector of joint torques (dim model.nv).
const DataTpl< Scalar, Options, JointCollectionTpl >::MatrixXs & crba(const ModelTpl< Scalar, Options, JointCollectionTpl > &model, DataTpl< Scalar, Options, JointCollectionTpl > &data, const Eigen::MatrixBase< ConfigVectorType > &q)
Computes the upper triangular part of the joint space inertia matrix M by using the Composite Rigid B...
#define BOOST_CHECK_IS_APPROX(double_field, multires_field, Scalar)
q
Matrix6x J
Jacobian of joint placements.
void rnea(const int num_threads, ModelPoolTpl< Scalar, Options, JointCollectionTpl > &pool, const Eigen::MatrixBase< ConfigVectorPool > &q, const Eigen::MatrixBase< TangentVectorPool1 > &v, const Eigen::MatrixBase< TangentVectorPool2 > &a, const Eigen::MatrixBase< TangentVectorPool3 > &tau)
The Recursive Newton-Euler algorithm. It computes the inverse dynamics, aka the joint torques accordi...
int njoints
Number of joints.
vec
ConfigVectorType lowerPositionLimit
Lower joint configuration limit.
BOOST_AUTO_TEST_CASE(test_basic)
v
void randomConfiguration(const ModelTpl< Scalar, Options, JointCollectionTpl > &model, const Eigen::MatrixBase< ConfigVectorIn1 > &lowerLimits, const Eigen::MatrixBase< ConfigVectorIn2 > &upperLimits, const Eigen::MatrixBase< ReturnType > &qout)
Generate a configuration vector uniformly sampled among provided limits.
int dim
data
VectorXs TangentVectorType
Dense vectorized version of a joint tangent vector (e.g. velocity, acceleration, etc). It also handles the notion of co-tangent vector (e.g. torque, etc).
void forwardKinematics(const ModelTpl< Scalar, Options, JointCollectionTpl > &model, DataTpl< Scalar, Options, JointCollectionTpl > &data, const Eigen::MatrixBase< ConfigVectorType > &q)
Update the joint placements according to the current joint configuration.
MatrixXs M
The joint space inertia matrix (a square matrix of dim model.nv).
TangentVectorType ddq
The joint accelerations computed from ABA.
Main pinocchio namespace.
Definition: timings.cpp:30
const DataTpl< Scalar, Options, JointCollectionTpl >::Matrix6x & computeJointJacobians(const ModelTpl< Scalar, Options, JointCollectionTpl > &model, DataTpl< Scalar, Options, JointCollectionTpl > &data, const Eigen::MatrixBase< ConfigVectorType > &q)
Computes the full model Jacobian, i.e. the stack of all motion subspace expressed in the world frame...
list a
VectorXs ConfigVectorType
Dense vectorized version of a joint configuration vector.
ConfigVectorType upperPositionLimit
Upper joint configuration limit.
void humanoidRandom(ModelTpl< Scalar, Options, JointCollectionTpl > &model, bool usingFF=true)
Create a humanoid kinematic tree with 6-DOF limbs and random joint placements.
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > VectorXd
Definition: conversions.cpp:14
ModelTpl< NewScalar, Options, JointCollectionTpl > cast() const
void fill(Eigen::Ref< MatType > mat, const typename MatType::Scalar &value)


pinocchio
Author(s):
autogenerated on Tue Jun 1 2021 02:45:04