File: broadcast_array.F

package info (click to toggle)
aces3 3.0.6-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 82,460 kB
  • sloc: fortran: 225,647; ansic: 20,413; cpp: 4,349; makefile: 953; sh: 137
file content (104 lines) | stat: -rw-r--r-- 3,806 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
C  Copyright (c) 2003-2010 University of Florida
C
C  This program is free software; you can redistribute it and/or modify
C  it under the terms of the GNU General Public License as published by
C  the Free Software Foundation; either version 2 of the License, or
C  (at your option) any later version.

C  This program is distributed in the hope that it will be useful,
C  but WITHOUT ANY WARRANTY; without even the implied warranty of
C  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
C  GNU General Public License for more details.

C  The GNU General Public License is included in this distribution
C  in the file COPYRIGHT.
      subroutine broadcast_array(array_table, narray_table,
     *                      index_table,
     *                      nindex_table, segment_table, nsegment_table,
     *                      block_map_table, nblock_map_table,
     *                      scalar_table, nscalar_table, 
     *                      address_table, op)
c---------------------------------------------------------------------------
c   Broadcasts the static array in the "result" field of the instruction
c   to each processor in the company.  The copy of the array on proc 0
c   is the data that is broadcast.
c----------------------------------------------------------------------------
      implicit none
      include 'interpreter.h'
      include 'mpif.h'
      include 'trace.h'
      include 'parallel_info.h'
      include 'dbugcom.h'
      include 'machine_types.h'
#ifdef ALTIX
      include 'sheap.h'
#endif

      integer narray_table, nindex_table, nsegment_table,
     *        nblock_map_table
      integer op(loptable_entry)
      integer array_table(larray_table_entry, narray_table)
      integer index_table(lindex_table_entry, nindex_table)
      integer segment_table(lsegment_table_entry, nsegment_table)
      integer block_map_table(lblock_map_entry, nblock_map_table)
      integer nscalar_table
      double precision scalar_table(nscalar_table)
      integer*8 address_table(narray_table)

      integer ierr, array, array_type, ind
      integer i

      double precision x(1)
#ifdef ALTIX
      pointer (ptr, x)
#else
      common x
#endif

      integer*8 daddr, indx
      integer*8 get_index_from_base
      integer n, nindex, val1, val2
      integer company_comm, pst_get_company_comm

#ifdef ALTIX
      ptr = dshptr
#endif
      array = op(c_result_array)
      array_type = array_table(c_array_type, array)
      if (array_type .ne. static_array) then
         print *,'Error in broadcast_array: Arg must be a static array'
         call abort_job()
      endif

      if (array .lt. 1 .or. array .gt. narray_table) then
         print *,'Error: Invalid array in get_my_rank, line ',
     *     current_line
         print *,'Array index is ',array,' Allowable values are ',
     *      ' 1 through ',narray_table
         call abort_job()
      endif

c---------------------------------------------------------------------------
c   Locate the array's memory and determine the size of the array.
c---------------------------------------------------------------------------

      daddr = address_table(array)
      indx = get_index_from_base(daddr, x, 2)
      nindex = array_table(c_nindex,array)

      n = 1
      do i = 1, nindex
         val1 = array_table(c_index_range1+i-1,array)
         val2 = array_table(c_index_range2+i-1,array)
         n = n * (val2-val1+1)
      enddo

c----------------------------------------------------------------------------
c   Broadcast the data.
c----------------------------------------------------------------------------

      company_comm = pst_get_company_comm(me)
      call mpi_bcast(x(indx), n, MPI_DOUBLE_PRECISION, 0,
     *               company_comm, ierr)
      return
      end