-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
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
How to Generate librmm.so #1781
Comments
Currently, RMM is a header-only library. So when you build RMM, what you are building is (in the case of C++) just unit tests. For RMM Python, the build does create a binary library for the Python bindings of the C++ library. |
As of #1779 we are considering making RMM a shared library rather than header-only. Mark’s comments are correct about the current state of things. |
What is the correct way of inclusion to make c++ compilation work? I got the following piece of simple code for compiling with nsys: #include <gtest/gtest.h> TEST(RMM, profile) } It complained about the following: /usr/bin/g++ -Wall -pthread -std=c++14 -I/usr/local/cuda/include -Isrc -I/home/myuser/include -I/usr/local/include -o bin/test.o -c src/test.cpp My container uses cuda 12.5.1. |
Please define |
Marking this as complete for now -- please feel free to follow up and re-open if you have more questions! |
I followed the steps to build rmm from source code. However, I didn't get librmm.so as expected under build folder. Where can I find it after building?
The text was updated successfully, but these errors were encountered: