Nick Papior
Nick Papior
Perhaps, until these things are settled, the methods should be duplicated in both codes (so scalapack can be linked with other lapack implementations).
> @zerothi Thanks for your feedback. > > The following scenarios you provided > > ``` > BLIS_NUM_THREADS=X OMP_NUM_THREADS=Y # use X > OMP_NUM_THREADS=Y # use Y > BLIS_NUM_THREADS=X #...
This would be great!!! I also kind of like: ``` pip install --only-binary=':all:,^package' ``` to exclude `package` from the `:all:` set. I think having the `-` check is not clear...
Good question, it probably involves much more elaboration. > Returns a new DataArray with renamed coordinates, dimensions or a new name. > The new DataArray will share memory location with...
I see, if I read *new DataArray* I would implicitly assume there is no connection between the new and the old object. Where does the boundary of `new` lie? Dimension...
I.e. this might suprise some users: ```python import xarray as xr import numpy as np data = np.random.rand(3, 3) print(data) a = xr.DataArray( data, dims=list("xy"), ) print(a) b = a.rename({"x":...
I don't see the connection to `copy`, if anything it should be: ```diff - Returns a new DataArray with renamed coordinates, dimensions or a new name. + Returns a shallow...
I agree it isn't easy. Hard to clarify without lots of words. Perhaps for the sake of changing something we could stick with removing `new`, then if this pops up...
Perhaps in: https://docs.xarray.dev/en/stable/getting-started-guide/why-xarray.html and https://docs.xarray.dev/en/stable/user-guide/terminology.html It might be good to emphasize this path?
Great! Thanks for your inputs! > > Now, some comments/questions on your discussion. First of all, what is this? `es[, es]` - I'm sorry but I've never seen nor used...