!!$ !!$ Parallel Sparse BLAS v2.0 !!$ (C) Copyright 2006 Salvatore Filippone University of Rome Tor Vergata !!$ Alfredo Buttari University of Rome Tor Vergata !!$ !!$ Redistribution and use in source and binary forms, with or without !!$ modification, are permitted provided that the following conditions !!$ are met: !!$ 1. Redistributions of source code must retain the above copyright !!$ notice, this list of conditions and the following disclaimer. !!$ 2. Redistributions in binary form must reproduce the above copyright !!$ notice, this list of conditions, and the following disclaimer in the !!$ documentation and/or other materials provided with the distribution. !!$ 3. The name of the PSBLAS group or the names of its contributors may !!$ not be used to endorse or promote products derived from this !!$ software without specific written permission. !!$ !!$ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS !!$ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED !!$ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR !!$ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PSBLAS GROUP OR ITS CONTRIBUTORS !!$ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR !!$ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF !!$ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS !!$ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN !!$ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) !!$ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE !!$ POSSIBILITY OF SUCH DAMAGE. !!$ !!$ ! File: psb_glob_to_loc.f90 ! ! Subroutine: psb_glob_to_loc2 ! Performs global to local index translation. If an index does not belong ! to the current process, a negative value is returned (see also iact). ! ! Arguments: ! x(:) - integer Array containing the indices to be translated. ! y(:) - integer Array containing the translated indices. ! desc_a - type(). The communication descriptor. ! info - integer. return code. ! iact - character, optional A character defining the behaviour on ! an index not belonging to the calling process ! 'I'gnore, 'W'arning, 'A'bort ! owned - logical, optional When .true. limits the input to indices strictly ! owned by the process, i.e. excludes halo. ! subroutine psb_glob_to_loc2(x,y,desc_a,info,iact,owned) use psb_descriptor_type use psb_const_mod use psb_error_mod use psb_string_mod use psb_penv_mod use psi_mod implicit none !...parameters.... type(psb_desc_type), intent(in) :: desc_a integer, intent(in) :: x(:) integer, intent(out) :: y(:), info character, intent(in), optional :: iact logical, intent(in), optional :: owned !....locals.... integer :: n character :: act integer :: int_err(5), err_act real(kind(1.d0)) :: real_val logical :: owned_ integer, parameter :: zero=0 character(len=20) :: name if(psb_get_errstatus() /= 0) return info=0 name = 'glob_to_loc' call psb_erractionsave(err_act) if (present(iact)) then act=iact else act='I' endif act = toupper(act) if (present(owned)) then owned_=owned else owned_=.false. end if int_err=0 real_val = 0.d0 n = size(x) call psi_idx_cnv(n,x,y,desc_a,info,owned=owned_) select case(act) case('E','I') call psb_erractionrestore(err_act) return case('W') if ((info /= 0).or.(count(y(1:n)<0) >0)) then write(0,'("Error ",i5," in subroutine glob_to_loc")') info end if case('A') if ((info /= 0).or.(count(y(1:n)<0) >0)) then call psb_errpush(info,name) goto 9999 end if end select call psb_erractionrestore(err_act) return 9999 continue call psb_erractionrestore(err_act) if (err_act == psb_act_ret_) then return else call psb_error() end if return end subroutine psb_glob_to_loc2 !!$ !!$ Parallel Sparse BLAS v2.0 !!$ (C) Copyright 2006 Salvatore Filippone University of Rome Tor Vergata !!$ Alfredo Buttari University of Rome Tor Vergata !!$ !!$ Redistribution and use in source and binary forms, with or without !!$ modification, are permitted provided that the following conditions !!$ are met: !!$ 1. Redistributions of source code must retain the above copyright !!$ notice, this list of conditions and the following disclaimer. !!$ 2. Redistributions in binary form must reproduce the above copyright !!$ notice, this list of conditions, and the following disclaimer in the !!$ documentation and/or other materials provided with the distribution. !!$ 3. The name of the PSBLAS group or the names of its contributors may !!$ not be used to endorse or promote products derived from this !!$ software without specific written permission. !!$ !!$ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS !!$ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED !!$ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR !!$ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PSBLAS GROUP OR ITS CONTRIBUTORS !!$ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR !!$ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF !!$ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS !!$ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN !!$ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) !!$ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE !!$ POSSIBILITY OF SUCH DAMAGE. !!$ !!$ ! Subroutine: psb_glob_to_loc ! Performs global to local index translation. If an index does not belong ! to the current process, a negative value is returned (see also iact). ! ! Arguments: ! x(:) - integer Array containing the indices to be translated. ! overwritten on output with the result. ! desc_a - type(). The communication descriptor. ! info - integer. return code. ! iact - character, optional A character defining the behaviour on ! an index not belonging to the calling process ! 'I'gnore, 'W'arning, 'A'bort ! owned - logical, optional When .true. limits the input to indices strictly ! owned by the process, i.e. excludes halo. ! subroutine psb_glob_to_loc(x,desc_a,info,iact,owned) use psb_penv_mod use psb_descriptor_type use psb_const_mod use psb_error_mod use psb_string_mod use psi_mod implicit none !...parameters.... type(psb_desc_type), intent(in) :: desc_a integer, intent(inout) :: x(:) integer, intent(out) :: info logical, intent(in), optional :: owned character, intent(in), optional :: iact !....locals.... integer :: n character :: act integer :: err_act, dectype logical :: owned_ integer, parameter :: zero=0 character(len=20) :: name integer :: ictxt, iam, np if(psb_get_errstatus() /= 0) return info=0 name = 'glob_to_loc' ictxt = desc_a%matrix_data(psb_ctxt_) call psb_info(ictxt,iam,np) call psb_erractionsave(err_act) dectype = desc_a%matrix_data(psb_dec_type_) if (present(iact)) then act=iact else act='I' endif if (present(owned)) then owned_=owned else owned_=.false. end if act = toupper(act) n = size(x) call psi_idx_cnv(n,x,desc_a,info,owned=owned_) select case(act) case('E','I') call psb_erractionrestore(err_act) return case('W') if ((info /= 0).or.(count(x(1:n)<0) >0)) then write(0,'("Error ",i5," in subroutine glob_to_loc")') info end if case('A') if ((info /= 0).or.(count(x(1:n)<0) >0)) then write(0,*) count(x(1:n)<0) call psb_errpush(info,name) goto 9999 end if end select call psb_erractionrestore(err_act) return 9999 continue call psb_erractionrestore(err_act) if (err_act == psb_act_ret_) then return else call psb_error() end if return end subroutine psb_glob_to_loc