Open truncs opened 8 months ago
i got around this issue by modifying my /usr/include/c10/util/Logging.h
file. There i found in line 25 a precompiler statement:
#ifdef C10_USE_GLOG
i just made the precompiler always choose the else case so that
#include <c10/util/logging_is_not_google_glog.h>
is included instead of
#include <c10/util/logging_is_google_glog.h>
Furthermore i had to add the following line to submodules/diff-gaussian-rasterization/cuda_rasterizer/rasterizer_impl.h
#include <cstdint>
Stacktrace
Env
Pytorch
CUDA
Linux Kernel
Thoughts?