-
Notifications
You must be signed in to change notification settings - Fork 18
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
feat: add nccl support for multi-gpu tensor parallelism #91
Conversation
… back to the user
Looks fine to me, though in general it's probably best to avoid using the panic macro in production code if the function returns a Result you may be better off finding a way of propagating the error and handling it |
backends/vllm/src/tests/mod.rs
Outdated
mod llama; | ||
#[cfg(all(test, feature = "nccl"))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the test
check is not necessary, as this whole folder is included only when running test
Closes #101. |
Addresses #24 (llama). |
No description provided.