forked from M-Labs/nac3
core/ndstrides: fix get_nth_element IRRT func name
This commit is contained in:
parent
5acba1c4ef
commit
7c69015aaf
|
@ -259,11 +259,11 @@ bool __nac3_ndarray_is_c_contiguous64(NDArray<int64_t>* ndarray) {
|
|||
return is_c_contiguous(ndarray);
|
||||
}
|
||||
|
||||
uint8_t* __nac3_get_nth_pelement(const NDArray<int32_t>* ndarray, int32_t nth) {
|
||||
uint8_t* __nac3_ndarray_get_nth_pelement(const NDArray<int32_t>* ndarray, int32_t nth) {
|
||||
return get_nth_pelement(ndarray, nth);
|
||||
}
|
||||
|
||||
uint8_t* __nac3_get_nth_pelement64(const NDArray<int64_t>* ndarray,
|
||||
uint8_t* __nac3_ndarray_get_nth_pelement64(const NDArray<int64_t>* ndarray,
|
||||
int64_t nth) {
|
||||
return get_nth_pelement(ndarray, nth);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue