altanh commented on issue #7339:
URL: https://github.com/apache/tvm/issues/7339#issuecomment-769541879
Not sure if Python should be the source of truth but `float("inf")` returns
`inf` whereas `float("inff")` fails. Also numpy seems to have similar behavior
(but they somehow avoid erroring by ignoring the rest of the input...):
```
>>> np.fromstring("inff, 1.0", dtype=float, sep=",")
array([inf])
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]