feat: speed up requires_package using caching#3705
Merged
Conversation
Contributor
|
Thanks for opening a Pull Request. If you want to perform a review write a comment saying: @ansys-reviewer-bot review |
requires_package using caching
Collaborator
Author
Benchmarks:8.87s v 0.27s - 32.85x improvements. Using the test attached in this PR. Pre-changesPost-changes (improved) |
…ymapdl into test/testing-performance
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3705 +/- ##
==========================================
+ Coverage 87.88% 88.15% +0.27%
==========================================
Files 187 187
Lines 14710 14717 +7
==========================================
+ Hits 12928 12974 +46
+ Misses 1782 1743 -39 |
Collaborator
Author
|
@pyansys-ci-bot LGTM. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
requires_packageis quite slow because of the attempt to import a package and the error handling.This is the perfect case of using
cachewrapper to avoid executing the importing function if the response is already given. I might be able to expand this to other parts of the library.I do not expect massive performance improvements on the test library, although it is called quite a lot of times.
Issue linked
Close #3706
Checklist
draftif it is not ready to be reviewed yet.feat: adding new MAPDL command)draftif it is not ready to be reviewed yet.feat: adding new MAPDL command)