base/serial/psb_cnumbmm.f90
 base/serial/psb_cspspmm.f90
 base/serial/psb_csymbmm.f90
 base/serial/psb_dnumbmm.f90
 base/serial/psb_dspspmm.f90
 base/serial/psb_dsymbmm.f90
 base/serial/psb_snumbmm.f90
 base/serial/psb_sspspmm.f90
 base/serial/psb_ssymbmm.f90
 base/serial/psb_znumbmm.f90
 base/serial/psb_zspspmm.f90
 base/serial/psb_zsymbmm.f90

New error handling
psblas3-accel
Salvatore Filippone 10 years ago
parent 895b7abc5f
commit 53732e40ea

@ -73,12 +73,8 @@ subroutine psb_cnumbmm(a,b,c)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_cnumbmm
@ -146,12 +142,8 @@ subroutine psb_cbase_numbmm(a,b,c)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
contains

@ -109,12 +109,8 @@ subroutine psb_cspspmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_cspspmm

@ -75,12 +75,8 @@ subroutine psb_csymbmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_csymbmm
@ -143,12 +139,8 @@ subroutine psb_cbase_symbmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
contains

@ -73,12 +73,8 @@ subroutine psb_dnumbmm(a,b,c)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_dnumbmm
@ -146,12 +142,8 @@ subroutine psb_dbase_numbmm(a,b,c)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
contains

@ -109,12 +109,8 @@ subroutine psb_dspspmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_dspspmm

@ -75,12 +75,8 @@ subroutine psb_dsymbmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_dsymbmm
@ -143,12 +139,8 @@ subroutine psb_dbase_symbmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
contains

@ -73,12 +73,8 @@ subroutine psb_snumbmm(a,b,c)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_snumbmm
@ -146,12 +142,8 @@ subroutine psb_sbase_numbmm(a,b,c)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
contains

@ -109,12 +109,8 @@ subroutine psb_sspspmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_sspspmm

@ -75,12 +75,8 @@ subroutine psb_ssymbmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_ssymbmm
@ -143,12 +139,8 @@ subroutine psb_sbase_symbmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
contains

@ -73,12 +73,8 @@ subroutine psb_znumbmm(a,b,c)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_znumbmm
@ -146,12 +142,8 @@ subroutine psb_zbase_numbmm(a,b,c)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
contains

@ -109,12 +109,8 @@ subroutine psb_zspspmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_zspspmm

@ -75,12 +75,8 @@ subroutine psb_zsymbmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
end subroutine psb_zsymbmm
@ -143,12 +139,8 @@ subroutine psb_zbase_symbmm(a,b,c,info)
call psb_erractionrestore(err_act)
return
9999 continue
call psb_erractionrestore(err_act)
if (err_act == psb_act_abort_) then
call psb_error()
return
end if
9999 call psb_error_handler(err_act)
return
contains

Loading…
Cancel
Save