Skip to content

Commit

Permalink
multi_gpu: fix issue with library SONAME containing a newline
Browse files Browse the repository at this point in the history
  • Loading branch information
NaderAlAwar committed Oct 14, 2022
1 parent 2a1e5ff commit 1539ae1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions multi_gpu_copy.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
so_name = so_name.split(".")
lib_name = so_name[0]
suffix = so_name[1:]
suffix = [s.strip() for s in suffix]
suffix = ".".join(suffix)

new_so_name = f"{lib_name}_{package_id}.{suffix}"
Expand Down

0 comments on commit 1539ae1

Please sign in to comment.