-
Notifications
You must be signed in to change notification settings - Fork 30
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
Improve performance of Xee #29
Comments
alxmrs
pushed a commit
that referenced
this issue
Oct 3, 2023
Makes improvements towards #29. Here, we group together all ee.getInfo() calls into one RPC call. In addition, this PR helped identify the underlying reason why Xee is slow (see #30). Status Quo: ``` open_dataset():avg=51.30,std=10.21,best=39.41,worst=68.27 open_and_chunk():avg=52.94,std=7.01,best=43.06,worst=63.03 open_and_write():avg=113.94,std=27.35,best=90.03,worst=173.90 ``` After: ``` open_dataset():avg=39.82,std=8.67,best=25.24,worst=55.54 open_and_chunk():avg=36.46,std=11.96,best=25.71,worst=59.83 open_and_write():avg=91.48,std=4.74,best=86.33,worst=104.08 ``` PiperOrigin-RevId: 570480601
alxmrs
pushed a commit
that referenced
this issue
Oct 3, 2023
Makes improvements towards #29. Here, we group together all ee.getInfo() calls into one RPC call. In addition, this PR helped identify the underlying reason why Xee is slow (see #30). Status Quo: ``` open_dataset():avg=51.30,std=10.21,best=39.41,worst=68.27 open_and_chunk():avg=52.94,std=7.01,best=43.06,worst=63.03 open_and_write():avg=113.94,std=27.35,best=90.03,worst=173.90 ``` After: ``` open_dataset():avg=39.82,std=8.67,best=25.24,worst=55.54 open_and_chunk():avg=36.46,std=11.96,best=25.71,worst=59.83 open_and_write():avg=91.48,std=4.74,best=86.33,worst=104.08 ``` PiperOrigin-RevId: 570480601
alxmrs
pushed a commit
that referenced
this issue
Oct 4, 2023
Makes improvements towards #29. Here, we group together all ee.getInfo() calls into one RPC call. In addition, this PR helped identify the underlying reason why Xee is slow (see #30). Status Quo: ``` open_dataset():avg=51.30,std=10.21,best=39.41,worst=68.27 open_and_chunk():avg=52.94,std=7.01,best=43.06,worst=63.03 open_and_write():avg=113.94,std=27.35,best=90.03,worst=173.90 ``` After: ``` open_dataset():avg=39.82,std=8.67,best=25.24,worst=55.54 open_and_chunk():avg=36.46,std=11.96,best=25.71,worst=59.83 open_and_write():avg=91.48,std=4.74,best=86.33,worst=104.08 ``` PiperOrigin-RevId: 570806762
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've noticed a regression in performance of Xee from the time we've introduced micro benchmarks.
Before:
Today:
The text was updated successfully, but these errors were encountered: