Closed
Description
Describe the bug
cpp/CMakeLists.txt
has a option to enable generation of CUDA kernel lineinfo on line:
Line 66 in 42297b5
However, enabling it does not generate required lineinfo, which is useful for debugging and profiling.
UPDATE: KERNEL_INFO
flag is also ignored, see Venkat's comment below.
Steps/Code to reproduce bug
Enable LINE_INFO
option in the CMakeLists.txt file and build in verbose mode. See that CUDA compile lines have no -lineinfo
option.
Expected behavior
Line information should be generated when enabled.
Environment details (please complete the following information):
- Environment location: I tested on Bare-metal, but should be reproducible on Docker, Cloud etc.
- Linux Distro/Architecture: Not relevant
- GPU Model/Driver: Not relevant
- CUDA: Not relevant
- Method of cuDF & cuML install: from source
cmake
version3.20.2
&gcc/g++
version9.3.2
Additional context
This issue is probably because the module
CUDA_ENABLE_LINEINFO
and cpp/CMakeLists.txt
sets LINE_INFO
. On my local setup changing this produced the line information.