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
Some b-spline bases (esp. of high degrees) have casting issues (returning arrays with the wrong data type). Probably comes from the fact that there are operations with Python integers.
The text was updated successfully, but these errors were encountered:
No this is an intended error raised if the user provides data and coordinates with different floating precisions. For now it was decided to enforce it strictly (i.e., throwing an error). It may be subject to automatic casting as per the TODO comment above.
The current issue concerns a casting rule from NumPy that may convert a float32 array to float64 depending on the order of operations with a Python integer for instance. Still need a bit of investigation and read what are best practices.
Some b-spline bases (esp. of high degrees) have casting issues (returning arrays with the wrong data type). Probably comes from the fact that there are operations with Python integers.
The text was updated successfully, but these errors were encountered: