Skip to content

Commit

Permalink
Fix linking of torch_cuda
Browse files Browse the repository at this point in the history
  • Loading branch information
HGuillemet committed Aug 16, 2024
1 parent c88f4f7 commit 0d506e6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@
@Platform(
value = "linux",
extension = "-gpu",
link = { "c10", "torch" , "c10_cuda", "torch_cuda_linalg" } // cuda_linalg built as separate lib on linux only
link = { "c10", "torch" , "c10_cuda", "torch_cuda", "torch_cuda_linalg" } // cuda_linalg built as separate lib on linux only
),
@Platform(
value = "windows",
extension = "-gpu",
link = { "c10", "torch" , "c10_cuda" }
link = { "c10", "torch" , "c10_cuda", "torch_cuda" }
)
},
target = "org.bytedeco.pytorch.cuda",
Expand Down

0 comments on commit 0d506e6

Please sign in to comment.