-
Notifications
You must be signed in to change notification settings - Fork 915
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
Split up experimental_row_operator_tests.cu to improve its compile time #13382
Split up experimental_row_operator_tests.cu to improve its compile time #13382
Conversation
Build Metrics Report before this change Also ran a PR build compiling just the one file: The split-up result is two files compiling ~25% faster total: |
#include <thrust/sort.h> | ||
#include <thrust/transform.h> | ||
|
||
template <typename PhysicalElementComparator> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code was moved from experimental_row_operator_tests.cu
/merge |
Description
Noticed the
experimental_row_operator_tests.cu
build time increased significantly in the last few weeks.This PR splits the thrust calls into a separate .cu file. The remaining code is C++ but could not be converted to .cpp because the
row_operators.cuh
files contain device code that g++ cannot compile.Checklist