Tensor.ufuncs

property Tensor.ufuncs

Access to Numpy style universal functions.

These default ufuncs are always available, but may or may not be optimized for the specific space in use.

Note

This interface is will be deprecated when Numpy 1.13 becomes the minimum required version. Use Numpy ufuncs directly, e.g., np.sqrt(x) instead of x.ufuncs.sqrt().