File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -1136,37 +1136,37 @@ cdef usm_ndarray _zero_like(usm_ndarray ary):
1136
1136
return r
1137
1137
1138
1138
1139
- cdef api char * usm_ndarray_get_data (usm_ndarray arr):
1139
+ cdef api char * UsmNDArray_GetData (usm_ndarray arr):
1140
1140
"""
1141
1141
"""
1142
1142
return arr.get_data()
1143
1143
1144
1144
1145
- cdef api int usm_ndarray_get_ndim (usm_ndarray arr):
1145
+ cdef api int UsmNDArray_GetNDim (usm_ndarray arr):
1146
1146
""" """
1147
1147
return arr.get_ndim()
1148
1148
1149
1149
1150
- cdef api Py_ssize_t* usm_ndarray_get_shape (usm_ndarray arr):
1150
+ cdef api Py_ssize_t* UsmNDArray_GetShape (usm_ndarray arr):
1151
1151
""" """
1152
1152
return arr.get_shape()
1153
1153
1154
1154
1155
- cdef api Py_ssize_t* usm_ndarray_get_strides (usm_ndarray arr):
1155
+ cdef api Py_ssize_t* UsmNDArray_GetStrides (usm_ndarray arr):
1156
1156
""" """
1157
1157
return arr.get_strides()
1158
1158
1159
1159
1160
- cdef api int usm_ndarray_get_typenum (usm_ndarray arr):
1160
+ cdef api int UsmNDArray_GetTypenum (usm_ndarray arr):
1161
1161
""" """
1162
1162
return arr.get_typenum()
1163
1163
1164
1164
1165
- cdef api int usm_ndarray_get_flags (usm_ndarray arr):
1165
+ cdef api int UsmNDArray_GetFlags (usm_ndarray arr):
1166
1166
""" """
1167
1167
return arr.get_flags()
1168
1168
1169
1169
1170
- cdef api c_dpctl.DPCTLSyclQueueRef usm_ndarray_get_queue_ref (usm_ndarray arr):
1170
+ cdef api c_dpctl.DPCTLSyclQueueRef UsmNDArray_GetQueueRef (usm_ndarray arr):
1171
1171
""" """
1172
1172
return arr.get_queue_ref()
You can’t perform that action at this time.
0 commit comments