You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: int64 indexing migration batch 6 - loop counters and index types
- Default.All.cs: int i -> long i for size iteration
- Default.Any.cs: int i -> long i for size iteration
- StackedMemoryPool.cs: int i -> long i (count param is long)
- np.random.poisson.cs: int i -> long i for size iteration
- np.random.bernoulli.cs: int i -> long i for size iteration
- np.random.randn.cs: int i -> long i for size iteration
- NDArray.Indexing.Masking.cs:
- int idx -> long idx for trueCount iteration
- GetInt32 -> GetInt64 (nonzero returns NDArray<long>[])
- int valueIdx -> long valueIdx for mask.size iteration
All changes follow INT64_DEVELOPER_GUIDE.md patterns.
0 commit comments