-
Notifications
You must be signed in to change notification settings - Fork 541
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
Ensure GPU is used for input transposing of host arrays #3835
Conversation
Thanks @dantegd for the quick fix! |
rerun tests |
@gpucibot merge |
Codecov Report
@@ Coverage Diff @@
## branch-0.20 #3835 +/- ##
===============================================
+ Coverage 85.96% 86.03% +0.06%
===============================================
Files 225 225
Lines 16986 17117 +131
===============================================
+ Hits 14602 14726 +124
- Misses 2384 2391 +7
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Closes issue rapidsai#3832 Related to rapidsai#3767 cc @teju85 and @venkywonka and @vinaydes who are working on RF Will be profiling the solution before flipping the PR to ready to review Quick profiling, on a 2070S laptop,average of 10 runs of a simple LinearRegression.fit (that expects data in `F` format), with a `X` matrix of 500 columns with 100000 rows shows: - Before the fix: ``` common.input_utils.input_to_cuml_array : 0.1795 s ``` - After the fix: ``` common.input_utils.input_to_cuml_array : 0.0632 s ``` Authors: - Dante Gama Dessavre (https://github.com/dantegd) Approvers: - William Hicks (https://github.com/wphicks) - Corey J. Nolet (https://github.com/cjnolet) URL: rapidsai#3835
Closes issue #3832
Related to #3767
cc @teju85 and @venkywonka and @vinaydes who are working on RF
Will be profiling the solution before flipping the PR to ready to review
Quick profiling, on a 2070S laptop,average of 10 runs of a simple LinearRegression.fit (that expects data in
F
format), with aX
matrix of 500 columns with 100000 rows shows: