We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
As of today https://github.com/NVIDIA/TensorRT-LLM/blob/255779a91d6d3d137a792c3dd590a8284267bd35/examples/cpp/executor/CMakeLists.txt hardcodes -DENABLE_MULTI_DEVICE=1
TensorRT-LLM/examples/cpp/executor/CMakeLists.txt
Line 51 in 255779a
and then tries to build multi device.
This is just a proposal for ENABLE_MULTI_DEVICE to be overridable by cmake: eg:
if (not ${ENABLE_MULTI_DEVICE}) set(ENABLE_MULTI_DEVICE 1) endif() set(CMAKE_CXX_FLAGS "-Wall -pthread -lstdc++ -DENABLE_MULTI_DEVICE=${ENABLE_MULTI_DEVICE}") ...
@tongyuantongyu ?
The text was updated successfully, but these errors were encountered:
@tongyuantongyu do you think you can help with this?
Sorry, something went wrong.
Thanks for the suggestion. @WilliamTambellini Would you like to create a PR for this?
Sure, on it.
tongyuantongyu
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
As of today
https://github.com/NVIDIA/TensorRT-LLM/blob/255779a91d6d3d137a792c3dd590a8284267bd35/examples/cpp/executor/CMakeLists.txt
hardcodes
-DENABLE_MULTI_DEVICE=1
TensorRT-LLM/examples/cpp/executor/CMakeLists.txt
Line 51 in 255779a
and then tries to build multi device.
This is just a proposal for ENABLE_MULTI_DEVICE to be overridable by cmake: eg:
@tongyuantongyu ?
The text was updated successfully, but these errors were encountered: