-
Notifications
You must be signed in to change notification settings - Fork 162
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
Only call cudaGetDeviceProperties once. #135
Conversation
Might it make sense to query this information in |
Codecov Report
@@ Coverage Diff @@
## develop #135 +/- ##
========================================
Coverage 94.84% 94.84%
========================================
Files 268 268
Lines 15216 15216
========================================
Hits 14431 14431
Misses 785 785 Continue to review full report at Codecov.
|
That makes sense to me, but you would have to add the max grid size to the |
True, though |
You're right we could put some |
Agreed, something would have to be put into I was thinking that |
LGTM |
While debugging I added some timers to
encode3launch
and got the following results for a single precision field of size 528x520x512 on device.Previously
Now
I guess this would break things if in between calls to ZFP the user set the active device and the new active device had a different max grid size, but I doubt anyone is doing that.