Commit d685413 1 parent 03db694 commit d685413 Copy full SHA for d685413
File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -224,15 +224,15 @@ jobs:
224
224
- run :
225
225
name : Install env using main channel
226
226
command : |
227
- conda install -y -q python=3.11 cmake make swig=4.0.2 mkl=2023 mkl-devel=2023 numpy scipy pytest gxx_linux-64 sysroot_linux-64
227
+ conda install -y -q python=3.11 cmake make swig mkl=2023 mkl-devel=2023 numpy scipy pytest gxx_linux-64=11.2 sysroot_linux-64
228
228
- when :
229
229
condition :
230
230
equal : [ "ON", << parameters.raft >> ]
231
231
steps :
232
232
- run :
233
233
name : Install env using conda-forge channel
234
234
command : |
235
- conda install -y -q python=3.11 cmake make swig=4.0.2 mkl=2023 mkl-devel=2023 numpy scipy pytest gxx_linux-64 sysroot_linux-64=2.28 libraft cuda-version=11.8 cuda-toolkit -c rapidsai-nightly -c "nvidia/label/cuda-11.8.0" -c conda-forge
235
+ conda install -y -q python=3.11 cmake make swig mkl=2023 mkl-devel=2023 numpy scipy pytest gxx_linux-64=11.2 sysroot_linux-64=2.28 libraft cuda-version=11.8 cuda-toolkit -c rapidsai-nightly -c "nvidia/label/cuda-11.8.0" -c conda-forge
236
236
- when :
237
237
condition :
238
238
and :
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ outputs:
84
84
build :
85
85
- {{ compiler('cxx') }}
86
86
- sysroot_linux-64 =2.17 # [linux64]
87
- - swig =4.0.2
87
+ - swig
88
88
- cmake >=3.23.1
89
89
- make # [not win]
90
90
host :
Original file line number Diff line number Diff line change @@ -1022,14 +1022,14 @@ PyObject *swig_ptr (PyObject *a)
1022
1022
return SWIG_NewPointerObj(data, SWIGTYPE_p_bool, 0);
1023
1023
}
1024
1024
if(PyArray_TYPE(ao) == NPY_UINT64) {
1025
- #ifdef SWIGWORDSIZE64
1025
+ #if (__SIZEOF_LONG__ == 8)
1026
1026
return SWIG_NewPointerObj(data, SWIGTYPE_p_unsigned_long, 0);
1027
1027
#else
1028
1028
return SWIG_NewPointerObj(data, SWIGTYPE_p_unsigned_long_long, 0);
1029
1029
#endif
1030
1030
}
1031
1031
if(PyArray_TYPE(ao) == NPY_INT64) {
1032
- #ifdef SWIGWORDSIZE64
1032
+ #if (__SIZEOF_LONG__ == 8)
1033
1033
return SWIG_NewPointerObj(data, SWIGTYPE_p_long, 0);
1034
1034
#else
1035
1035
return SWIG_NewPointerObj(data, SWIGTYPE_p_long_long, 0);
You can’t perform that action at this time.
0 commit comments