psblas3-submodules:

base/modules/psb_c_sort_mod.f90
 base/modules/psb_d_sort_mod.f90
 base/modules/psb_i_sort_mod.f90
 base/modules/psb_s_sort_mod.f90
 base/modules/psb_z_sort_mod.f90
 base/serial/sort/psb_c_hsort_impl.f90
 base/serial/sort/psb_c_isort_impl.f90
 base/serial/sort/psb_c_msort_impl.f90
 base/serial/sort/psb_c_qsort_impl.f90
 base/serial/sort/psb_d_hsort_impl.f90
 base/serial/sort/psb_d_isort_impl.f90
 base/serial/sort/psb_d_msort_impl.f90
 base/serial/sort/psb_d_qsort_impl.f90
 base/serial/sort/psb_i_hsort_impl.f90
 base/serial/sort/psb_i_isort_impl.f90
 base/serial/sort/psb_i_msort_impl.f90
 base/serial/sort/psb_i_qsort_impl.f90
 base/serial/sort/psb_s_hsort_impl.f90
 base/serial/sort/psb_s_isort_impl.f90
 base/serial/sort/psb_s_msort_impl.f90
 base/serial/sort/psb_s_qsort_impl.f90
 base/serial/sort/psb_z_hsort_impl.f90
 base/serial/sort/psb_z_isort_impl.f90
 base/serial/sort/psb_z_msort_impl.f90
 base/serial/sort/psb_z_qsort_impl.f90
 test/kernel/Makefile

Fixes for all types on SORT modules.
psblas3-submodules
Salvatore Filippone 11 years ago
parent caa30f647e
commit fd86dc61fd

@ -118,7 +118,6 @@ module psb_c_sort_mod
integer(psb_ipk_) :: l(0:n+1)
end subroutine psi_c_amsort_dw
end interface
module
interface psb_qsort
module subroutine psb_cqsort(x,ix,dir,flag)

@ -106,7 +106,6 @@ module psb_d_sort_mod
integer(psb_ipk_) :: l(0:n+1)
end subroutine psi_d_amsort_dw
end interface
module
interface psb_qsort
module subroutine psb_dqsort(x,ix,dir,flag)

@ -143,7 +143,6 @@ module psb_i_sort_mod
integer(psb_ipk_) :: l(0:n+1)
end subroutine psi_i_amsort_dw
end interface
module
interface psb_qsort
module subroutine psb_iqsort(x,ix,dir,flag)

@ -106,7 +106,6 @@ module psb_s_sort_mod
integer(psb_ipk_) :: l(0:n+1)
end subroutine psi_s_amsort_dw
end interface
module
interface psb_qsort
module subroutine psb_sqsort(x,ix,dir,flag)

@ -118,7 +118,6 @@ module psb_z_sort_mod
integer(psb_ipk_) :: l(0:n+1)
end subroutine psi_z_amsort_dw
end interface
module
interface psb_qsort
module subroutine psb_zqsort(x,ix,dir,flag)

Loading…
Cancel
Save