Jitify prints logs to stdout by default because JITIFY_PRINT_LOG is defined to 1 by default.
|
#if JITIFY_PRINT_LOG |
|
std::cout << include_parent << "(" << line_num |
|
<< "): warning: " << include_name << ": [jitify] File not found" |
|
<< std::endl; |
|
#endif |
I think it really should print warnings and errors to stderr by default, and ideally provide a way to override logs so they can be output to a file if desired.
See rapidsai/cudf#6117
Jitify prints logs to stdout by default because
JITIFY_PRINT_LOGis defined to1by default.jitify/jitify.hpp
Lines 2817 to 2821 in 3e96bcc
I think it really should print warnings and errors to
stderrby default, and ideally provide a way to override logs so they can be output to a file if desired.See rapidsai/cudf#6117