We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Changes from PR #10593 cause the libcudf Debug build to fail with the following errors.
20-114D [229+48+134=410] Building CXX object CMakeFiles/cudf.dir/src/io/utilities/data_sink.cpp.o FAILED: CMakeFiles/cudf.dir/src/io/utilities/data_sink.cpp.o /usr/local/bin/g++ -DCUDF_VERSION=22.06.00 -DCUFILE_FOUND -DJITIFY_PRINT_LOG=0 -DJITIFY_USE_CACHE -DSPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_INFO -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_CUDA -DTHRUST_HOST_SYSTEM=THRUST_HOST_SYSTEM_CPP -Dcudf_EXPORTS -I/cudf/cpp/build/_deps/dlpack-src/include -I/cudf/cpp/build/_deps/jitify-src -I/cudf/cpp/include -I/cudf/cpp/build/include -I/cudf/cpp/src -I/conda/envs/rapids/include/rapids/libcudacxx -I/cudf/cpp/build/_deps/thrust-src -I/cudf/cpp/build/_deps/thrust-src/dependencies/cub -I/cudf/cpp/build/_deps/nvcomp-src/include -I/cudf/cpp/build/_deps/kvikio-src/cpp/include -isystem /conda/envs/rapids/include -isystem /usr/local/cuda/include -fdiagnostics-color=always -g -fPIC -Wall -Werror -Wno-unknown-pragmas -Wno-error=deprecated-declarations -Wno-deprecated-declarations -pthread -std=gnu++17 -MD -MT CMakeFiles/cudf.dir/src/io/utilities/data_sink.cpp.o -MF CMakeFiles/cudf.dir/src/io/utilities/data_sink.cpp.o.d -o CMakeFiles/cudf.dir/src/io/utilities/data_sink.cpp.o -c /cudf/cpp/src/io/utilities/data_sink.cpp In file included from /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/shim/cufile.hpp:19, from /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/defaults.hpp:26, from /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/buffer.hpp:23, from /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/file_handle.hpp:30, from /cudf/cpp/src/io/utilities/data_sink.cpp:24: /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/utils.hpp: In function ‘off_t kvikio::convert_size2off(std::size_t)’: /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/utils.hpp:39:9: error: comparison of integer expressions of different signedness: ‘std::size_t’ {aka ‘long unsigned int’} and ‘long int’ [-Werror=sign-compare] 39 | if (x >= std::numeric_limits<off_t>::max()) { | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cc1plus: all warnings being treated as errors 20-114D [229+46+136=410] Building CXX object CMakeFiles/cudf.dir/src/io/utilities/datasource.cpp.o FAILED: CMakeFiles/cudf.dir/src/io/utilities/datasource.cpp.o /usr/local/bin/g++ -DCUDF_VERSION=22.06.00 -DCUFILE_FOUND -DJITIFY_PRINT_LOG=0 -DJITIFY_USE_CACHE -DSPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_INFO -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_CUDA -DTHRUST_HOST_SYSTEM=THRUST_HOST_SYSTEM_CPP -Dcudf_EXPORTS -I/cudf/cpp/build/_deps/dlpack-src/include -I/cudf/cpp/build/_deps/jitify-src -I/cudf/cpp/include -I/cudf/cpp/build/include -I/cudf/cpp/src -I/conda/envs/rapids/include/rapids/libcudacxx -I/cudf/cpp/build/_deps/thrust-src -I/cudf/cpp/build/_deps/thrust-src/dependencies/cub -I/cudf/cpp/build/_deps/nvcomp-src/include -I/cudf/cpp/build/_deps/kvikio-src/cpp/include -isystem /conda/envs/rapids/include -isystem /usr/local/cuda/include -fdiagnostics-color=always -g -fPIC -Wall -Werror -Wno-unknown-pragmas -Wno-error=deprecated-declarations -Wno-deprecated-declarations -pthread -std=gnu++17 -MD -MT CMakeFiles/cudf.dir/src/io/utilities/datasource.cpp.o -MF CMakeFiles/cudf.dir/src/io/utilities/datasource.cpp.o.d -o CMakeFiles/cudf.dir/src/io/utilities/datasource.cpp.o -c /cudf/cpp/src/io/utilities/datasource.cpp In file included from /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/shim/cufile.hpp:19, from /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/defaults.hpp:26, from /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/buffer.hpp:23, from /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/file_handle.hpp:30, from /cudf/cpp/src/io/utilities/datasource.cpp:23: /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/utils.hpp: In function ‘off_t kvikio::convert_size2off(std::size_t)’: /cudf/cpp/build/_deps/kvikio-src/cpp/include/kvikio/utils.hpp:39:9: error: comparison of integer expressions of different signedness: ‘std::size_t’ {aka ‘long unsigned int’} and ‘long int’ [-Werror=sign-compare] 39 | if (x >= std::numeric_limits<off_t>::max()) { | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cc1plus: all warnings being treated as errors
The text was updated successfully, but these errors were encountered:
@madsbk @vuule
Sorry, something went wrong.
Will fix, first thing tomorrow!
convert_size2off()
convert_size2off(): fix different signedness (#60)
beb0d1c
Fixes rapidsai/cudf#10703 Also, adding `-Werror` to the compilation of the C++ example Authors: - Mads R. B. Kristensen (https://github.com/madsbk) Approvers: - Benjamin Zaitlen (https://github.com/quasiben) URL: #60
@davidwendt please reopen, if rapidsai/kvikio#60 didn't fix the issue.
Successfully merging a pull request may close this issue.
Changes from PR #10593 cause the libcudf Debug build to fail with the following errors.
The text was updated successfully, but these errors were encountered: