8000 WIP: Speed up singlediode._lambertw by cwhanse · Pull Request #1661 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

WIP: Speed up singlediode._lambertw #1661

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

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix errors
  • Loading branch information
cwhanse committed Feb 14, 2023
commit 0ca692c8c53f8cf0ca0089128da1ac9aa8de4a33
4 changes: 2 additions & 2 deletions benchmarks/benchmarks/singlediode.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def setup(self):
self.params = (il, io, rs, rsh, nNsVth)

def time_bishop88(self):
b88(*self.params)
b88(self.params)

def time_lambertw(self):
_singlediode.lambertw(*self.params)
_singlediode._lambertw(*self.params)
0