I got a matrix 'x' of float128 values and I am getting the next error when:
> q = (inv(xt * x) * xt) * n
> array type float128 is unsupported in linalg
Where xt is transposed x and n other float128 matrix. All Other operations with that matrix are handled correctly like transposing or matrix product.
Yes I need float128 for this case, otherwise the results are differing from the ones closer to real values we are taking as reference.