### Description ```python import pytensor.tensor as pt pt.as_tensor(8.9).dtype, pt.as_tensor(9.0).dtype, pt.as_tensor(9.1).dtype # ('float64', 'float32', 'float64') ``` Completely puzzling