Filip Matzner
Filip Matzner
Yes, that may be the way or you could take a look at the official NVIDIA CUDA Docker image source on which we run the CI: https://gitlab.com/nvidia/container-images/cuda/blob/master/dist/11.7.0/ubuntu2204/runtime/Dockerfile
Can you try to link Protobuf to your program?
See e.g., https://cmake.org/cmake/help/latest/module/FindProtobuf.html ```cmake find_package(Protobuf REQUIRED) target_link_libraries(foo ${Protobuf_LIBRARIES}) target_include_directories(foo ${Protobuf_INCLUDE_DIRS}) ```
Please print the `${Protobuf_INCLUDE_DIRS}` variable using `message()` call. Maybe there are some spaces and you have to wrap it in `"`.
You can try or you can try to change the PATH, but protobuf from anaconda is probably not the one you want. Anyway, the error you are seeing is most...
No, you don't need to install protobuf yourself, the INSTALL_PROTOBUF will do that for you, but you still have to link your executable to the Protobuf in CMake as discussed...
The build folder seems to be damaged, please try to remove the whole build folder first. On Wed, Jun 8, 2022, 00:39 lancelot-ch ***@***.***> wrote: > I tried but I...
Hi, try to run ``` export CUDA_VISIBLE_DEVICES="" ``` before running your program to disable the GPU
ok, I think I misunderstood your previous message: > However, I realized that even if I change the device from GPU to CPU (graph::SetDefaultDevice("/cpu:0", &def); ), the result is always...
Hi, I have already considered this, maybe I can take a look at it in the near future.