Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
250ed733
"csrc/vscode:/vscode.git/clone" did not exist on "58c0a928c99c80ad3c8f16266a2344c98cf05c24"
Unverified
Commit
250ed733
authored
Jun 17, 2025
by
jthomson04
Committed by
GitHub
Jun 17, 2025
Browse files
fix: Fix NIXL 0.3.1 build (#1561)
parent
fbf1ffd7
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
9 deletions
+7
-9
Cargo.lock
Cargo.lock
+2
-3
lib/bindings/python/Cargo.lock
lib/bindings/python/Cargo.lock
+2
-3
lib/llm/Cargo.toml
lib/llm/Cargo.toml
+1
-1
lib/llm/src/block_manager/block/transfer/nixl.rs
lib/llm/src/block_manager/block/transfer/nixl.rs
+2
-2
No files found.
Cargo.lock
View file @
250ed733
...
@@ -4085,9 +4085,8 @@ dependencies = [
...
@@ -4085,9 +4085,8 @@ dependencies = [
[[package]]
[[package]]
name = "nixl-sys"
name = "nixl-sys"
version = "0.3.0"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
source = "git+https://github.com/ai-dynamo/nixl?rev=a7c654d46a14cd5ce635cc8c02433d71df93dedf#a7c654d46a14cd5ce635cc8c02433d71df93dedf"
checksum = "c5ed1b2b73a39516cb082cc2e0c8cf5fa9aadf7364b3b7851f43fbcda70566ee"
dependencies = [
dependencies = [
"bindgen 0.71.1",
"bindgen 0.71.1",
"cc",
"cc",
...
...
lib/bindings/python/Cargo.lock
View file @
250ed733
...
@@ -2811,9 +2811,8 @@ dependencies = [
...
@@ -2811,9 +2811,8 @@ dependencies = [
[[package]]
[[package]]
name = "nixl-sys"
name = "nixl-sys"
version = "0.3.0"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
source = "git+https://github.com/ai-dynamo/nixl?rev=a7c654d46a14cd5ce635cc8c02433d71df93dedf#a7c654d46a14cd5ce635cc8c02433d71df93dedf"
checksum = "c5ed1b2b73a39516cb082cc2e0c8cf5fa9aadf7364b3b7851f43fbcda70566ee"
dependencies = [
dependencies = [
"bindgen",
"bindgen",
"cc",
"cc",
...
...
lib/llm/Cargo.toml
View file @
250ed733
...
@@ -81,7 +81,7 @@ regex = "1"
...
@@ -81,7 +81,7 @@ regex = "1"
rayon
=
"1"
rayon
=
"1"
# block_manager
# block_manager
nixl-sys
=
{
version
=
"0.3.0-rc.2
"
,
optional
=
true
}
nixl-sys
=
{
git
=
"https://github.com/ai-dynamo/nixl"
,
rev
=
"a7c654d46a14cd5ce635cc8c02433d71df93dedf
"
,
optional
=
true
}
cudarc
=
{
version
=
"0.16.2"
,
features
=
["cuda-12020"]
,
optional
=
true
}
cudarc
=
{
version
=
"0.16.2"
,
features
=
["cuda-12020"]
,
optional
=
true
}
ndarray
=
{
version
=
"0.16"
,
optional
=
true
}
ndarray
=
{
version
=
"0.16"
,
optional
=
true
}
nix
=
{
version
=
"0.26"
,
optional
=
true
}
nix
=
{
version
=
"0.26"
,
optional
=
true
}
...
...
lib/llm/src/block_manager/block/transfer/nixl.rs
View file @
250ed733
...
@@ -117,8 +117,8 @@ where
...
@@ -117,8 +117,8 @@ where
.storage_type
()
.storage_type
()
.nixl_mem_type
();
.nixl_mem_type
();
let
mut
src_dl
=
XferDescList
::
new
(
src_mem_type
)
?
;
let
mut
src_dl
=
XferDescList
::
new
(
src_mem_type
,
true
)
?
;
let
mut
dst_dl
=
XferDescList
::
new
(
dst_mem_type
)
?
;
let
mut
dst_dl
=
XferDescList
::
new
(
dst_mem_type
,
true
)
?
;
for
(
src
,
dst
)
in
src
.iter
()
.zip
(
dst
.iter_mut
())
{
for
(
src
,
dst
)
in
src
.iter
()
.zip
(
dst
.iter_mut
())
{
append_xfer_request
(
src
,
dst
,
&
mut
src_dl
,
&
mut
dst_dl
)
?
;
append_xfer_request
(
src
,
dst
,
&
mut
src_dl
,
&
mut
dst_dl
)
?
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment