-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mechanism to find complex dtype info #433
Comments
Sorry if this is a bit off topic, but I wonder if instead of having different functions like this, we could have just one function that was type agnostic like |
My impression is this would be awkward as float and complex dtypes have additional information to ints, so if you don't want polymorphic returns from a universal function (previous |
Here's the results of an integer and floating point type from NumPy (line 1 was the In [2]: np.iinfo(np.int32)
Out[2]: iinfo(min=-2147483648, max=2147483647, dtype=int32)
In [3]: np.finfo(np.float32)
Out[3]: finfo(resolution=1e-06, min=-3.4028235e+38, max=3.4028235e+38, dtype=float32) Nearly all of the information is shared other than Anyways it's unclear why having one function would be challenging. Though please feel free to clarify |
Ah Note the |
It's confusing, John, they have quite different attributes: |
We could also make these things |
Leo, those show the same attributes as the example above. All they add is |
OK perhaps I should've linked to the corresponding NumPy pages? My point is the returned attributes could increase and further diverge in the future, just like the status quo in NumPy. I feel this unifying discussion would make our life harder when it comes to extensibility in the future. btw, to clarify:
|
Not clear to me what info would belong on |
I'd keep at least |
How about we have bound-y attributes per component, i.e. Both of those options do feel weird, but having an array library tell you the bounds can be pretty useful. |
Based on feedback in the most recent consortium meeting (2022-06-23), the plan is to open an issue on the NumPy issue tracker to gauge appetite there before moving forward adding The main argument for adding |
Think we forgot to delegate someone to do this, so just now wrote an issue at numpy/numpy#22260 |
There was some confusion about how finfo works with complex numbers, leading to an issue being made requesting that numpy either adds a cinfo function or changes the documentation of finfo. The submitter of that issue also linked to an issue for a seperate repository, which also included conversation about the proposed change. (github.com/data-apis/array-api/issues/433) In both discussions, there was a general concensus that it would be better to change the documentation to explain how finfo works instead of creating a cinfo function. Since this is just a small documentation change, there's no need to run the normal checks. [skip ci]
cinfo()
for complex dtypes
How do folks feel about changing
numpy/numpy#22263 has indeed now added documented complex support in |
@honno I suggest adding your proposal to the next Array API meeting agenda. |
When introducing complex dtypes and updating/introducing related functions (#373), I wonder if we'd want to introduce a
cinfo()
function alaiinfo()
/finfo()
. What would its resulting info object look like?I don't see any array/tensor library which implements exactly
cinfo()
, although there might be an equivalent I'm missing. For say NumPy, was there just not demand for such a function, and/or such a need was somewhat served withfinfo()
?The text was updated successfully, but these errors were encountered: