File: scalapack-mpi-test.links

package info (click to toggle)
scalapack 2.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 37,012 kB
  • sloc: fortran: 339,113; ansic: 74,517; makefile: 1,494; sh: 34
file content (23 lines) | stat: -rwxr-xr-x 1,087 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
#! /bin/sh
for flavour in ${MPI_SUPPORTED}; do
  for d in TESTING/*.dat; do
    datafile=`basename $d`
    echo usr/share/scalapack/${datafile} usr/lib/${DEB_HOST_MULTIARCH}/scalapack/${flavour}-tests/${datafile}
  done
  for d in BLACS/TESTING/*.dat; do
    datafile=`basename $d`
    echo usr/share/scalapack/BLACS/${datafile} usr/lib/${DEB_HOST_MULTIARCH}/scalapack/${flavour}-tests/BLACS/${datafile}
  done
  # BLACS test executables get built in the top directory, so link to them
  for blacsTest in xCbtest xFbtest; do
    echo usr/lib/${DEB_HOST_MULTIARCH}/scalapack/${flavour}-tests/${blacsTest} usr/lib/${DEB_HOST_MULTIARCH}/scalapack/${flavour}-tests/BLACS/${blacsTest}
  done
  for d in PBLAS/TESTING/*.dat; do
    datafile=`basename $d`
    echo usr/share/scalapack/PBLAS/${datafile} usr/lib/${DEB_HOST_MULTIARCH}/scalapack/${flavour}-tests/PBLAS/${datafile}
  done
  for d in PBLAS/TIMING/*.dat; do
    datafile=`basename $d`
    echo usr/share/scalapack/PBLAS/TIMING/${datafile} usr/lib/${DEB_HOST_MULTIARCH}/scalapack/${flavour}-tests/PBLAS/TIMING/${datafile}
  done
done