File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ set(CUBOOL_C_API_SOURCES
40
40
sources /cuBool_Matrix_Build.cpp
41
41
sources /cuBool_Matrix_SetElement.cpp
42
42
sources /cuBool_Matrix_SetMarker.cpp
43
- sources /cuBool_Matrix_GetMarker .cpp
43
+ sources /cuBool_Matrix_Marker .cpp
44
44
sources /cuBool_Matrix_ExtractPairs.cpp
45
45
sources /cuBool_Matrix_ExtractSubMatrix.cpp
46
46
sources /cuBool_Matrix_Duplicate.cpp
Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ CUBOOL_EXPORT CUBOOL_API cuBool_Status cuBool_Matrix_SetMarker(
290
290
*
291
291
* @return Error code on this operation
292
292
*/
293
- CUBOOL_EXPORT CUBOOL_API cuBool_Status cuBool_Matrix_GetMarker (
293
+ CUBOOL_EXPORT CUBOOL_API cuBool_Status cuBool_Matrix_Marker (
294
294
cuBool_Matrix matrix ,
295
295
char * marker ,
296
296
cuBool_Index * size
Original file line number Diff line number Diff line change 25
25
#include < cuBool_Common.hpp>
26
26
#include < cstring>
27
27
28
- cuBool_Status cuBool_Matrix_GetMarker (
28
+ cuBool_Status cuBool_Matrix_Marker (
29
29
cuBool_Matrix matrix,
30
30
char * marker,
31
31
cuBool_Index* size
Original file line number Diff line number Diff line change @@ -114,8 +114,8 @@ def load_and_configure(cubool_lib_path: str):
114
114
ctypes .POINTER (ctypes .c_char )
115
115
]
116
116
117
- lib .cuBool_Matrix_GetMarker .restype = status_t
118
- lib .cuBool_Matrix_GetMarker .argtypes = [
117
+ lib .cuBool_Matrix_Marker .restype = status_t
118
+ lib .cuBool_Matrix_Marker .argtypes = [
119
119
matrix_p ,
120
120
ctypes .POINTER (ctypes .c_char ),
121
121
ctypes .POINTER (ctypes .c_uint )
Original file line number Diff line number Diff line change @@ -220,14 +220,14 @@ def marker(self):
220
220
"""
221
221
222
222
size = ctypes .c_uint (0 )
223
- status = wrapper .loaded_dll .cuBool_Matrix_GetMarker (
223
+ status = wrapper .loaded_dll .cuBool_Matrix_Marker (
224
224
self .hnd , ctypes .POINTER (ctypes .c_char )(), ctypes .byref (size )
225
225
)
226
226
227
227
bridge .check (status )
228
228
229
229
c_buffer = (ctypes .c_char * int (size .value ))()
230
- status = wrapper .loaded_dll .cuBool_Matrix_GetMarker (
230
+ status = wrapper .loaded_dll .cuBool_Matrix_Marker (
231
231
self .hnd , c_buffer , ctypes .byref (size )
232
232
)
233
233
You can’t perform that action at this time.
0 commit comments