Open jinangshah21 opened 2 days ago
The Error is same as of #5285, Here change is I have just replaced abs(A) <= maxval(abs(A)
with abs(A) <= max(tol , tol * maxval(abs(A)))
program test
integer :: A(3,2) = reshape([1,2,3,4,5,6], [3,2])
integer :: X(2)
X = abs(sum(A, dim=1))
print *, X
end program
This Also fails with same error
I will focus on this as I have some knowledge of it.
MRE :
LFortran Error :