home *** CD-ROM | disk | FTP | other *** search
- # Copyright 1999-2005 Gentoo Foundation
- # Distributed under the terms of the GNU General Public License v2
- # $Id: blas.eselect 249 2005-12-19 00:43:49Z kugelfang $
-
- inherit config multilib portage
-
- DESCRIPTION="Manage installed BLAS implementations"
- MAINTAINER="Danny van Dyk <kugelfang@gentoo.org>"
- SVN_DATE='$Date: 2005-12-19 00:43:49 +0000 (Mon, 19 Dec 2005) $'
- VERSION=$(svn_date_to_version "${SVN_DATE}")
-
- BLAS_CONFIG="${ROOT}/var/lib/eselect/blas/blas.config"
- BLAS_IMPLEMENTATIONS="ACML ATLAS threaded-ATLAS MKL72 reference"
- BLAS_PROFILES="C F77"
-
- # TODO
- # * make compatible with threaded-atlas target
-
-
- # check_* $libdir
- # implementation specific check functions
- check_ACML() {
- # libacml.so provides C/C++ and FORTRAN 77 support
- [[ -f ${1}/libacml.so ]] && echo "C F77"
- }
-
- check_ATLAS() {
- [[ -d ${1}/blas/atlas ]] || return
- local ret
- # libblas.so provides FORTRAN 77 support
- [[ -f ${1}/blas/atlas/libblas.so ]] && ret="F77"
- # libcblas.so provides C/C++ support
- [[ -f ${1}/blas/atlas/libcblas.so ]] && ret="${ret} C"
- echo "${ret}"
- }
-
- check_threaded-ATLAS() {
- [[ -d ${1}/blas/threaded-atlas ]] || return
- local ret
- # libblas.so provides FORTRAN 77 support
- [[ -f ${1}/blas/threaded-atlas/libblas.so ]] && ret="F77"
- # libcblas.so provides C/C++ support
- [[ -f ${1}/blas/threaded-atlas/libcblas.so ]] && ret="${ret} C"
- echo "${ret}"
- }
-
- check_MKL72() {
- [[ -d ${ROOT}/opt/intel/mkl72 ]] || return
- local dir
- case $(arch) in
- amd64) dir="em64t";;
- ia64) dir="64";;
- x86) dir="32";;
- esac
- [[ -f ${ROOT}/opt/intel/mkl72/lib/${dir}/libmkl.so ]] \
- && echo "F77 C"
- }
-
- check_reference() {
- [[ -d ${1}/blas/reference ]] || return
- local ret
- [[ -f ${1}/blas/reference/libblas.so ]] && ret="F77"
- [[ -f ${1}/blas/reference/libcblas.so ]] && ret="${ret} C"
- echo "${ret}"
- }
-
- # package $impl
- # Prints the name of the package providing $impl
- package() {
- case ${1} in
- ACML) echo "sci-libs/ACML";;
- ATLAS) echo "sci-libs/blas-atlas";;
- MKL*) echo "sci-libs/mkl";;
- reference) echo "sci-libs/blas-reference";;
- *) ;;
- esac
- }
-
- # is_active_* $lib
- # return 0 if $lib points to an active BLAS implementation of profile *
- is_active_ACML() {
- [[ -L ${1} ]] || return 1
- local lib=$(readlink -sn ${1})
- [[ $(basename ${lib}) == libacml.so ]] \
- && return 0
- return 1
- }
-
- is_active_ATLAS() {
- [[ -L ${1} ]] || return 1
- local lib=$(readlink -sn ${1})
- local dir=${lib%/*}
- [[ ${dir##*/} == atlas ]] \
- && return 0
- return 1
- }
-
- is_active_threaded-ATLAS() {
- [[ -L ${1} ]] || return 1
- local lib=$(readlink -sn ${1})
- local dir=${lib%/*}
- [[ ${dir##*/} == threaded-atlas ]] \
- && return 0
- return 1
- }
-
- is_active_MKL() {
- [[ -L ${1} ]] || return 1
- local lib=$(readlink -sn ${1})
- [[ $(basename ${lib}) == libmkl.so ]] \
- && return 0
- return 1
- }
-
- is_active_MKL72() {
- is_active_MKL $@
- }
-
- is_active_reference() {
- [[ -L ${1} ]] || return 1
- local lib=$(readlink -sn ${1})
- local dir=${lib%/*}
- [[ ${dir##*/} == reference ]] \
- && return 0
- return 1
- }
-
- # setup_* $libdir $profile
- # Implementation specific activation/setup functions
- setup_ACML() {
- if [[ ${2} == C ]] ; then
- ln -sf ${1}/libacml.so ${1}/libcblas.so
- ln -sf ${1}/libacml.so ${1}/libcblas.so.0
- ln -sf ${1}/libacml.a ${1}/libcblas.a
- elif [[ ${2} == F77 ]] ; then
- ln -sf ${1}/libacml.so ${1}/libblas.so
- ln -sf ${1}/libacml.so ${1}/libblas.so.0
- ln -sf ${1}/libacml.a ${1}/libblas.a
- else
- die "Illegal profile: ${2}"
- fi
- }
-
- setup_ATLAS() {
- if [[ ${2} == C ]] ; then
- ln -sf ${1}/blas/atlas/libcblas.so ${1}/libcblas.so
- ln -sf ${1}/blas/atlas/libcblas.so ${1}/libcblas.so.0
- ln -sf ${1}/blas/atlas/libcblas.a ${1}/libcblas.a
- elif [[ ${2} == F77 ]] ; then
- ln -sf ${1}/blas/atlas/libblas.so ${1}/libblas.so
- ln -sf ${1}/blas/atlas/libblas.so ${1}/libblas.so.0
- ln -sf ${1}/blas/atlas/libblas.a ${1}/libblas.a
- else
- die "Illegal profile: ${2}"
- fi
- }
-
- setup_threaded-ATLAS() {
- if [[ ${2} == C ]] ; then
- ln -sf ${1}/blas/threaded-atlas/libcblas.so ${1}/libcblas.so
- ln -sf ${1}/blas/threaded-atlas/libcblas.so ${1}/libcblas.so.0
- ln -sf ${1}/blas/threaded-atlas/libcblas.a ${1}/libcblas.a
- elif [[ ${2} == F77 ]] ; then
- ln -sf ${1}/blas/threaded-atlas/libblas.so ${1}/libblas.so
- ln -sf ${1}/blas/threaded-atlas/libblas.so ${1}/libblas.so.0
- ln -sf ${1}/blas/threaded-atlas/libblas.a ${1}/libblas.a
- else
- die "Illegal profile: ${2}"
- fi
- }
-
- setup_MKL72() {
- local dir
- case $(arch) in
- amd64) dir="em64t";;
- ia64) dir="64";;
- x86) dir="32";;
- esac
- if [[ ${2} == C ]] ; then
- ln -sf ${ROOT}/opt/intel/mkl72/lib/${dir}/libmkl.so \
- ${1}/libcblas.so
- ln -sf ${ROOT}/opt/intel/mkl72/lib/${dir}/libmkl.so \
- ${1}/libcblas.so.0
- # No static library for MKL72
- rm ${1}/libcblas.a &> /dev/null
- elif [[ ${2} == F77 ]] ; then
- ln -sf ${ROOT}/opt/intel/mkl72/lib/${dir}/libmkl.so \
- ${1}/libblas.so
- ln -sf ${ROOT}/opt/intel/mkl72/lib/${dir}/libmkl.so \
- ${1}/libblas.so.0
- rm ${1}/libblas.a &> /dev/null
- else
- die "Illegal profile: ${2}"
- fi
- }
-
- setup_reference() {
- if [[ ${2} == F77 ]] ; then
- ln -sf ${1}/blas/reference/libblas.so ${1}/libblas.so
- ln -sf ${1}/blas/reference/libblas.so ${1}/libblas.so.0
- ln -sf ${1}/blas/reference/libblas.a ${1}/libblas.a
- elif [[ ${2} == C ]] ; then
- return 1
- else
- die "Illegal profile: ${2}"
- fi
- }
-
- ### list action ###
-
- describe_list() {
- echo "List all installed BLAS implementations"
- }
-
- do_list() {
- local libdirs libdir x
- [[ -z "$@" ]] \
- && libdirs="$(list_libdirs)" \
- || libdirs="$@"
-
- [[ -f ${BLAS_CONFIG} ]] \
- || eselect blas scan
-
- for libdir in ${libdirs} ; do
- C_PROFILES=$(load_config ${BLAS_CONFIG} C_${libdir})
- F77_PROFILES=$(load_config ${BLAS_CONFIG} F77_${libdir})
- if [[ -n ${C_PROFILES} ]] || [[ -n ${F77_PROFILES} ]] ; then
- if [[ -n ${C_PROFILES} ]] ; then
- write_list_start "C/C++ profiles in ${ROOT}/usr/${libdir}"
- for x in ${C_PROFILES} ; do
- active=''
- is_active_${x} ${ROOT}/usr/${libdir}/libcblas.so \
- && active=' *'
- write_kv_list_entry ${x} \
- "($(package ${x}))$(highlight "${active}")"
- done
- echo
- fi
- if [[ -n ${F77_PROFILES} ]] ; then
- write_list_start "FORTRAN 77 profiles in ${ROOT}/usr/${libdir}"
- for x in ${F77_PROFILES} ; do
- active=''
- is_active_${x} ${ROOT}/usr/${libdir}/libblas.so \
- && active=' *'
- write_kv_list_entry ${x} \
- "($(package ${x}))$(highlight "${active}")"
- done
- echo
- fi
- fi
- done
- }
-
- ### select action ###
-
- describe_set() {
- echo "Activate one of the installed BLAS implementations"
- }
-
- do_set() {
- local libdirs=$(list_libdirs) profiles=${BLAS_PROFILES} impl libdir prof
- [[ ${#1} == 0 ]] \
- && die -q "Please specify the implementation to setup as active."
- impl=${1}
- shift
-
- [[ -f ${BLAS_CONFIG} ]] \
- || eselect blas scan
-
- has ${impl} ${BLAS_IMPLEMENTATIONS} \
- || die -q "Illegal implementation: ${impl}"
-
- for param in ${@} ; do
- if has ${param} ${libdirs} ; then
- mylibdirs=(${mylibdirs[@]} ${param})
- elif has ${param} ${BLAS_PROFILES} ; then
- myprofiles=(${myprofiles[@]} ${param})
- else
- die -q "Illegal parameter: ${param}."
- fi
- done
- [[ -n ${mylibdirs[@]} ]] && libdirs=${mylibdirs[@]}
- [[ -n ${myprofiles[@]} ]] && profiles=${myprofiles[@]}
-
- write_list_start "Changing BLAS implementation to $(highlight ${impl}) in"
- echo " ${libdirs}"
- write_list_start "Affected language interfaces"
- for libdir in ${libdirs} ; do
- for prof in ${profiles} ; do
- has ${prof} $(check_${impl} ${ROOT}/usr/${libdir}) || continue
- if setup_${impl} ${ROOT}/usr/${libdir} ${prof} ; then
- if ! has ${prof} ${myprofiles[@]} ; then
- myprofiles=( ${myprofiles[@]} ${prof} )
- fi
- store_config ${BLAS_CONFIG} "${prof}_${libdir}_CURRENT" ${impl}
- fi
- done
- done
- echo " ${myprofiles[@]}"
- }
-
- ### show action ###
-
- describe_show() {
- echo "Show the currently active BLAS implementations"
- }
-
- do_show() {
- local libdirs=$(list_libdirs) profiles=${BLAS_PROFILES} libdir lib prefix
-
- [[ -f ${BLAS_CONFIG} ]] \
- || eselect blas scan
-
- [[ -n ${1} ]] && has ${1} ${libdirs} && libdirs=${1}
- [[ -n ${2} ]] && has ${2} ${profiles} && profiles=${2}
-
- write_list_start "Active BLAS implementations"
- for libdir in ${libdirs} ; do
- [[ ${#libdirs} -eq 1 ]] || prefix="${ROOT}/usr/${libdir}"
- for prof in ${profiles} ; do
- [[ ${prof} == C ]] && lib=libcblas.so
- [[ ${prof} == F77 ]] && lib=libblas.so
- impl=$(load_config ${BLAS_CONFIG} "${prof}_${libdir}_CURRENT")
- if [[ -z ${impl} ]] ; then
- write_kv_list_entry "${prefix} (${prof})" "(none)"
- #[[ -n $(load_config ${BLAS_CONFIG} "${prof}_${libdir}") ]] \
- # && die -q "Configuration file is broken. Please run scan.${prof}_${libdir}"
- else
- if is_active_${impl} ${ROOT}/usr/${libdir}/${lib} ; then
- write_kv_list_entry "${prefix} (${prof})" "${impl} ($(package ${impl}))"
- else
- die -q "Configuration file is out of date. Please run scan."
- fi
- fi
- done
- done
- }
-
- ### update action ###
-
- describe_scan() {
- echo "Scans the system for data about all installed BLAS implementations"
- }
-
- do_scan() {
- local lib libdir impl prof
- [[ -e ${BLAS_CONFIG} ]] \
- && rm ${BLAS_CONFIG}
- for libdir in $(list_libdirs) ; do
- [[ -d ${ROOT}/usr/${libdir} ]] \
- && [[ ! -h ${ROOT}/usr/${libdir} ]] \
- || continue
- for impl in ${BLAS_IMPLEMENTATIONS} ; do
- for prof in $(check_${impl} ${ROOT}/usr/${libdir}/) ; do
- if has ${prof} ${BLAS_PROFILES} ; then
- append_config ${BLAS_CONFIG} "${prof}_${libdir}" ${impl}
- [[ ${prof} == C ]] && lib=${ROOT}/usr/${libdir}/libcblas.so
- [[ ${prof} == F77 ]] && lib=${ROOT}/usr/${libdir}/libblas.so
- is_active_${impl} ${lib} \
- && store_config ${BLAS_CONFIG} \
- "${prof}_${libdir}_CURRENT" ${impl}
- else
- die -q "Unknown profile: \"${prof}\". Valid profiles: ${BLAS_PROFILES}"
- fi
- done
- done
- done
- }
-
- # vim: set ft=eselect
-