David Wendt
David Wendt
I'd rather keep `cudf::string_view` out of this discussion. It is intended to match up somewhat to `std::string_view` https://en.cppreference.com/w/cpp/string/basic_string_view And some version of it may migrate to libcu++ at some point....
Can we investigate the increased compile times here? https://gpuci.gpuopenanalytics.com/job/rapidsai/job/gpuci/job/cudf/job/prb/job/cudf-cpu-cuda-build/CUDA=11.5/11169/Build_20Metrics_20Report/ The 2 mixed-join source files used to be the longest by far.
> For sanity, can you try replacing the `__device__` lambda with a function object? Like this? ``` struct int_fn { __device__ int operator()(int lhs, int rhs) { if (lhs !=...
No, not yet. I wanted to get some help from you on creating the details for nvcc bug since I don't know what is happening. Do you think the information...
This appears to be an out of memory error which is not a problem with the algorithm. The `COPYING_TEST` runs fine on my 48GB GPU with the arena allocator. The...
I agree. Actually, I don't think we should have this specific gtest. I'm inclined to disable it or remove it altogether.
@gpucibot merge
I was able to recreate this. The problem seems to be with negative NaN values. The divergence in the code mentioned in the description will either us the internal segmented-sort...
> > I believe the desired output is to place all the `NaN` values at the end, right? > > That is correct for my understanding too. Ok. That matches...