Skip to content
New issue

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

Compile gtsam python for windows #1685

Merged
merged 5 commits into from
Jan 17, 2024

Conversation

talregev
Copy link
Contributor

@talregev talregev commented Dec 8, 2023

Compile gtsam python for windows

I manage to compile and run python tests on windows.
Some of the python tests are fails on windows (16 of 243).
Please take a look on my PR.

@dellaert @varunagrawal @ProfFan

Waiting for merge:

@talregev talregev marked this pull request as ready for review December 8, 2023 00:33
@talregev
Copy link
Contributor Author

talregev commented Dec 8, 2023

I will disable the running of tests for windows. that you have a clean CI.

@ProfFan
Copy link
Collaborator

ProfFan commented Dec 8, 2023

Thank you! Could you post which tests fail here?

@talregev
Copy link
Contributor Author

talregev commented Dec 8, 2023

I am post here the errors, also I am put a link for the run:
https://github.com/borglab/gtsam/actions/runs/7135793022/job/19433202623

======================================================================
ERROR: test_dogleg (test_NonlinearOptimizer.TestScenario.test_dogleg)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_NonlinearOptimizer.py", line 43, in setUp
    self.assertEqual(0.0, self.fg.error(self.optimal_values), 0.0)
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "1", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,2,1,0,2,1>

======================================================================
ERROR: test_gauss_newton (test_NonlinearOptimizer.TestScenario.test_gauss_newton)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_NonlinearOptimizer.py", line 43, in setUp
    self.assertEqual(0.0, self.fg.error(self.optimal_values), 0.0)
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "1", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,2,1,0,2,1>

======================================================================
ERROR: test_gnc_params (test_NonlinearOptimizer.TestScenario.test_gnc_params)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_NonlinearOptimizer.py", line 43, in setUp
    self.assertEqual(0.0, self.fg.error(self.optimal_values), 0.0)
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "1", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,2,1,0,2,1>

======================================================================
ERROR: test_graduated_non_convexity (test_NonlinearOptimizer.TestScenario.test_graduated_non_convexity)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_NonlinearOptimizer.py", line 43, in setUp
    self.assertEqual(0.0, self.fg.error(self.optimal_values), 0.0)
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "1", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,2,1,0,2,1>

======================================================================
ERROR: test_iteration_hook (test_NonlinearOptimizer.TestScenario.test_iteration_hook)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_NonlinearOptimizer.py", line 43, in setUp
    self.assertEqual(0.0, self.fg.error(self.optimal_values), 0.0)
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "1", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,2,1,0,2,1>

======================================================================
ERROR: test_levenberg_marquardt (test_NonlinearOptimizer.TestScenario.test_levenberg_marquardt)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_NonlinearOptimizer.py", line 43, in setUp
    self.assertEqual(0.0, self.fg.error(self.optimal_values), 0.0)
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "1", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,2,1,0,2,1>

======================================================================
ERROR: test_levenberg_marquardt_pcg (test_NonlinearOptimizer.TestScenario.test_levenberg_marquardt_pcg)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_NonlinearOptimizer.py", line 43, in setUp
    self.assertEqual(0.0, self.fg.error(self.optimal_values), 0.0)
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "1", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,2,1,0,2,1>

======================================================================
ERROR: test_SFMExample (test_SFMExample.TestSFMExample.test_SFMExample)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_SFMExample.py", line 63, in test_SFMExample
    optimizer = gtsam.LevenbergMarquardtOptimizer(graph, initialEstimate)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "p0", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,3,1,0,3,1>

======================================================================
ERROR: test_StereoVOExample (test_StereoVOExample.TestStereoVOExample.test_StereoVOExample)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_StereoVOExample.py", line 71, in test_StereoVOExample
    optimizer = gtsam.LevenbergMarquardtOptimizer(graph, initialEstimate)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "l1", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,3,1,0,3,1>

======================================================================
ERROR: test_localToWorld (test_Utilities.TestUtilites.test_localToWorld)
Test localToWorld.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_Utilities.py", line 182, in test_localToWorld
    np.testing.assert_allclose(world.atPoint2(0), expected_point2)
                               ^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to at the key "0", which does not exist in the Values.

======================================================================
ERROR: test_perturbPoint2 (test_Utilities.TestUtilites.test_perturbPoint2)
Test perturbPoint2.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_Utilities.py", line 113, in test_perturbPoint2
    not np.allclose(values.atPoint2(1), gtsam.Point2(1, 1)))
                    ^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "1", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,2,1,0,2,1>

======================================================================
ERROR: test_perturbPoint3 (test_Utilities.TestUtilites.test_perturbPoint3)
Test perturbPoint3.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_Utilities.py", line 130, in test_perturbPoint3
    self.assertTrue(not np.allclose(values.atPoint3(1), point3))
                                    ^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "1", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,3,1,0,3,1>

======================================================================
ERROR: test_values (test_Values.TestValues.test_values)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_Values.py", line 62, in test_values
    self.gtsamAssertEquals(values.atPoint2(0), Point2(0,0), tol)
                           ^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "0", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,2,1,0,2,1>

======================================================================
ERROR: test_VisualISAMExample (test_VisualISAMExample.TestVisualISAMExample.test_VisualISAMExample)
Test to see if ISAM works as expected for a simple visual SLAM example.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_VisualISAMExample.py", line 48, in test_VisualISAMExample
    isam, result, nextPose = visual_isam.initialize(
                             ^^^^^^^^^^^^^^^^^^^^^^^
  File "D:\a\gtsam\gtsam\build\python\gtsam\utils\visual_isam.py", line 67, in initialize
    batchOptimizer = gtsam.LevenbergMarquardtOptimizer(newFactors,
                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "l0", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,3,1,0,3,1>

======================================================================
ERROR: test_isam2_error (test_VisualISAMExample.TestVisualISAMExample.test_isam2_error)
Test for isam2 error() method.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_VisualISAMExample.py", line 67, in test_isam2_error
    isam, result, nextPose = visual_isam.initialize(
                             ^^^^^^^^^^^^^^^^^^^^^^^
  File "D:\a\gtsam\gtsam\build\python\gtsam\utils\visual_isam.py", line 67, in initialize
    batchOptimizer = gtsam.LevenbergMarquardtOptimizer(newFactors,
                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "l0", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,3,1,0,3,1>

======================================================================
ERROR: test_isam2_update (test_VisualISAMExample.TestVisualISAMExample.test_isam2_update)
Test for full version of ISAM2::update method
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\gtsam\gtsam\build\python\gtsam\tests\test_VisualISAMExample.py", line 94, in test_isam2_update
    isam, result, nextPose = visual_isam.initialize(
                             ^^^^^^^^^^^^^^^^^^^^^^^
  File "D:\a\gtsam\gtsam\build\python\gtsam\utils\visual_isam.py", line 67, in initialize
    batchOptimizer = gtsam.LevenbergMarquardtOptimizer(newFactors,
                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Attempting to retrieve value with key "l0", type stored in Values is class gtsam::GenericValue<class Eigen::Matrix<double,-1,1,0,-1,1> > but requested type was class Eigen::Matrix<double,3,1,0,3,1>

----------------------------------------------------------------------

Ran 243 tests in 0.543s



FAILED (errors=16, skipped=3)

@ProfFan
Copy link
Collaborator

ProfFan commented Dec 14, 2023

It seems to be an RTTI issue, which actually makes the Python wrappers very cumbersome to use....

@talregev
Copy link
Contributor Author

It seems to be an RTTI issue, which actually makes the Python wrappers very cumbersome to use....

I am not sure what are you suggesting.

@talregev
Copy link
Contributor Author

talregev commented Dec 29, 2023

I am not sure what do you mean by RTTI issue.
I did some debug.
The error we get from here:
https://github.com/borglab/gtsam/blob/develop/gtsam/nonlinear/Values.cpp#L297

That was thrown from here:
https://github.com/borglab/gtsam/blob/develop/gtsam/nonlinear/Values-inl.h#L141

Maybe is msvc bug?
The flow of the code is like that. start from here:
https://github.com/borglab/gtsam/blob/develop/gtsam/nonlinear/Values-inl.h#L213
For the handle class there is 2 option.
General case:
https://github.com/borglab/gtsam/blob/develop/gtsam/nonlinear/Values-inl.h#L134
Eigen::Matrix case (template specialization):
https://github.com/borglab/gtsam/blob/develop/gtsam/nonlinear/Values-inl.h#L193

On windows it choose the general case.
On Linux it choose the Eigen::Matrix case.

Also for linux:

storedTypeName: gtsam::GenericValue<Eigen::Matrix<double, -1, 1, 0, -1, 1> >
requestedTypeName: Eigen::Matrix<double, -1, 1, 0, -1, 1>

@ProfFan
Copy link
Collaborator

ProfFan commented Dec 29, 2023

Yes, that is an RTTI issue, because dynamic_cast failed in the previous step

@talregev
Copy link
Contributor Author

talregev commented Dec 29, 2023

I suspect it before the dynamic cast. It from template specialization.
Because it choose the incorrect (or different from Linux) case for the template.

@ProfFan
Copy link
Collaborator

ProfFan commented Dec 29, 2023

I fixed this problem before, don't know why it's coming up again. Culprit is likely type_info being inconsistent between different dynamic libraries. #218

@ProfFan
Copy link
Collaborator

ProfFan commented Dec 29, 2023

Also borglab/GTDynamics#248

@talregev
Copy link
Contributor Author

talregev commented Dec 31, 2023

@ProfFan I added a workaround for windows template specialization.
I test it local. (I copy the gtsam code, and just change the template specialization):
https://github.com/borglab/gtsam/pull/1685/files#diff-2d6a3f78e983bc926a126f73463c25805ef90f9e838f91af83192f68b48353b9R200
Now it compile and run correctly.
It not a problem of dynamic_cast , nor a problem of type_info
It a problem of msbuild template substitute. I think it msbuild compiler bug. (when I compile this code on gcc, it create ambiguous error). msbuild not substitute correctly the template.
You can look at the code and see for yourself.

Now I have a new problem, from latest merge #1572:
It not found the cephes_igami

nonlinear.cpp.obj : error LNK2001: unresolved external symbol cephes_igami

@varunagrawal @ProfFan Can you help me to add this symbol (or give an hint) to windows python?
Thank you in advanced, and Happy new year.


Edit:
I added workaround for export cephes_igami for windows.

@ProfFan
Copy link
Collaborator

ProfFan commented Jan 2, 2024

What is cephes_igami? nvm

@talregev
Copy link
Contributor Author

talregev commented Jan 2, 2024

What is cephes_igami?

cephes_igami is a define from 3rdparty cephes that was added here: #1572
https://github.com/borglab/gtsam/blob/develop/gtsam/3rdparty/cephes/cephes/cephes_names.h#L45
In my workaround, I export the igami function. then it also export the cephes_igami because of that define.

Copy link
Collaborator

@ProfFan ProfFan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the contributions! I'll leave the rest of review to @varunagrawal who is better suited as Windows reviewer. Also CC @mattking-smith @jlblancoc who may be more familiar with Windows.

gtsam/3rdparty/cephes/dllexport.h Outdated Show resolved Hide resolved
gtsam/nonlinear/Values-inl.h Show resolved Hide resolved
.github/scripts/python.sh Show resolved Hide resolved
.github/workflows/build-python.yml Outdated Show resolved Hide resolved
.github/workflows/build-python.yml Show resolved Hide resolved
.github/workflows/build-python.yml Show resolved Hide resolved
.github/workflows/build-python.yml Show resolved Hide resolved
.github/workflows/build-python.yml Show resolved Hide resolved
.github/workflows/build-python.yml Show resolved Hide resolved
.github/workflows/build-python.yml Show resolved Hide resolved
gtsam/3rdparty/cephes/CMakeLists.txt Outdated Show resolved Hide resolved
@talregev
Copy link
Contributor Author

talregev commented Jan 3, 2024

Except the name changes, all the changes here are must and necessary to solve the problem of compiling windows gtsam python.

@talregev talregev force-pushed the TalR/test_python_windows branch 2 times, most recently from 369eff9 to 2a6d4ff Compare January 4, 2024 06:51
@talregev
Copy link
Contributor Author

This branch is ready for review.

Copy link
Collaborator

@varunagrawal varunagrawal left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Asking for one small change and then I can approve this PR.

@varunagrawal varunagrawal merged commit f191388 into borglab:develop Jan 17, 2024
31 checks passed
@talregev talregev deleted the TalR/test_python_windows branch January 17, 2024 06:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants