File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -28,11 +28,13 @@ before-all = [
28
28
" chmod +x scripts/build-env/manylinux.sh" ,
29
29
" scripts/build-env/manylinux.sh"
30
30
]
31
- repair-wheel-command = " auditwheel repair --exclude libcu*.so.* -w {dest_dir} {wheel}"
31
+ repair-wheel-command = [
32
+ " auditwheel repair -L tensor-array-repo/Tensor-Array/lib --exclude libcu*.so.* -w {dest_dir} {wheel}"
33
+ ]
32
34
33
35
[tool .cibuildwheel .linux .environment ]
34
36
cuda = " 12.9"
35
37
temp = " /tmp/cuda-temp"
36
38
CUDA_PATH = " /usr/local/cuda-${cuda}"
37
39
PATH = " ${PATH}:${CUDA_PATH}/bin"
38
- LD_LIBRARY_PATH = " ${LD_LIBRARY_PATH}:${CUDA_PATH}/lib:${CUDA_PATH}/lib64:/project/tensor-array-repo/Tensor-Array/lib "
40
+ LD_LIBRARY_PATH = " ${LD_LIBRARY_PATH}:${CUDA_PATH}/lib:${CUDA_PATH}/lib64"
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def main():
20
20
sources = glob .glob (os .path .join ("cpp" , "*.cc" )),
21
21
include_dirs = ["tensor-array-repo/Tensor-Array/include" ],
22
22
library_dirs = ["tensor-array-repo/Tensor-Array/lib" ],
23
- libraries = ["tensorarray_core" ],
23
+ libraries = ["tensorarray_core" , "tensorarray_layers" ],
24
24
define_macros = [("VERSION_INFO" , __version__ )],
25
25
),
26
26
]
@@ -52,9 +52,6 @@ def main():
52
52
package_dir = {
53
53
"" : "src" ,
54
54
},
55
- package_data = {
56
- "" : ["*.so" ]
57
- },
58
55
ext_modules = ext_modules ,
59
56
cmdclass = {
60
57
"build_ext" : build_ext ,
You can’t perform that action at this time.
0 commit comments