forked from M-Labs/nac3
1
0
Fork 0

core/ndstrides: fix get_nth_element IRRT func name

This commit is contained in:
lyken 2024-08-05 10:56:20 +08:00
parent 5acba1c4ef
commit 7c69015aaf
No known key found for this signature in database
GPG Key ID: 3BD5FC6AC8325DD8
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}