-
-
Notifications
You must be signed in to change notification settings - Fork 10.6k
[KV offload][1b/N] rename offloading to kv_offload #25191
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
Conversation
This commit renames v1/offloading to v1/kv_offload to avoid confusion with weights offloading. Signed-off-by: Or Ozeri <[email protected]>
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.
Code Review
This pull request correctly renames the v1/offloading
module and its references to v1/kv_offload
. The changes are consistent across the modified files. However, the refactoring appears incomplete. To fully align with the goal of avoiding confusion with weights offloading, it would be beneficial to also rename classes, functions, and documentation within the newly named module. For example, OffloadingWorker
could become KVOffloadWorker
, and the test function test_offloading_worker
could be renamed to test_kv_offload_worker
. While this might be planned for a subsequent PR in this series, completing the renaming would significantly improve code clarity and maintainability.
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.
Thanks @orozery
Signed-off-by: Or Ozeri <[email protected]>
Signed-off-by: Or Ozeri <[email protected]>
Signed-off-by: Or Ozeri <[email protected]>
Signed-off-by: Or Ozeri <[email protected]> Signed-off-by: charlifu <[email protected]>
Signed-off-by: Or Ozeri <[email protected]> Signed-off-by: xuebwang-amd <[email protected]>
Signed-off-by: Or Ozeri <[email protected]>
This PR renames v1/offloading to v1/kv_offload to avoid confusion with weights offloading.