Giter VIP home page Giter VIP logo

Comments (8)

rzhao88 avatar rzhao88 commented on August 12, 2024 2

I don't have the time current (due to job constraints) to do a clean fix for this. Feel free to take it and make a PR. @koide3 @cdb0y511

from fast_gicp.

Dysl3xik avatar Dysl3xik commented on August 12, 2024

I actually tracked this down to the RegularizationMethod parameter. When its set to Planar, the default the code does not work on either my sample set, or your provided data.

If I change to Frobenius it seems to work fine.

from fast_gicp.

koide3 avatar koide3 commented on August 12, 2024

I'm not really sure, but I guess it is a problem on Eigen::SelfAdjointEigenSolver used in the PLANE regularization that may have a problem on some GPUs. What GPU are you using? Can you insert the following test code just below eig.computeDirect(cov); to see if eigenvalue decomposition is working properly?

    // --- test code ---
    Eigen::Vector3f values = eig.eigenvalues();
    Eigen::Matrix3f v_diag = values.asDiagonal();
    Eigen::Matrix3f v_inv = eig.eigenvectors().inverse();

    Eigen::Matrix3f C_ = eig.eigenvectors() * v_diag * v_inv;

    if((cov - C_).array().abs().maxCoeff() > 1e-3) {
      printf("wrong SVD result\n");
      printf("--- C ---\n");
      for(int i=0; i<3; i++) {
        for(int j=0; j<3; j++) {
          printf("%.6f ", cov(i, j));
        }
        printf("\n");
      }

      printf("--- C_ ---\n");
      for(int i=0; i<3; i++) {
        for(int j=0; j<3; j++) {
          printf("%.6f ", C_(i, j));
        }
        printf("\n");
      }
    }
    // ---

from fast_gicp.

Dysl3xik avatar Dysl3xik commented on August 12, 2024

GPU is RTX8000

This code did not trigger to trap anything, I tried to go through all the covariance stuff and look for NAN or INF and I am not seeing it show up anywhere...

from fast_gicp.

Dysl3xik avatar Dysl3xik commented on August 12, 2024

I also tried reverting the plane code to the commented section and use covariance_regularization_svd() and still get the same result. Maybe that provides any more useful information....

from fast_gicp.

rzhao88 avatar rzhao88 commented on August 12, 2024

I found a fix for this. rzhao88@2159f39

Comment is wrong, I was using CUDA 11.5

from fast_gicp.

cdb0y511 avatar cdb0y511 commented on August 12, 2024

I found a fix for this. rzhao88@2159f39

Comment is wrong, I was using CUDA 11.5

Hi, @rzhao88
I have tested it on CUDA 11.5. It fixes sometimes the covariance stuff return NAN or INF issues in the Cuda version.
I think you could make a PR, the
src/fast_gicp/cuda/covariance_regularization.cu
fix it.
Thanks, @rzhao88
I think you @koide3 may be interested in it.

from fast_gicp.

JACKLiuDay avatar JACKLiuDay commented on August 12, 2024

I have the same problem. Do you guys have any ideas?

from fast_gicp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.