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

Anyway to improve the speed of .round() function? #21

Open
hanfluid opened this issue Mar 2, 2024 · 2 comments
Open

Anyway to improve the speed of .round() function? #21

hanfluid opened this issue Mar 2, 2024 · 2 comments

Comments

@hanfluid
Copy link

hanfluid commented Mar 2, 2024

No description provided.

@ion-g-ion
Copy link
Owner

Hi. The round function performs 2 sweeps one for the orthogonalization (QR decompositions) and one for the actual compression (SVDs). The asymptotic complexity cannot be reduced. Possible issues for a slow round can be:

  • ranks arising from successive multiplications. This can be solved by AMEn multiplications.
  • not using the right linear algebra backend. Intel MKL is usually the good choice in terms of performance.

@hanfluid
Copy link
Author

hanfluid commented Mar 4, 2024 via email

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

No branches or pull requests

2 participants