Accéder au contenu.
Menu Sympa

starpu-devel - Re: [Starpu-devel] hwloc detection problem when configuring starpu-svn-trunk and starpu-1.2.0rc5

Objet : Developers list for StarPU

Archives de la liste

Re: [Starpu-devel] hwloc detection problem when configuring starpu-svn-trunk and starpu-1.2.0rc5


Chronologique Discussions 
  • From: Nathalie Furmento <nathalie.furmento@labri.fr>
  • To: "Lucas M. Schnorr" <schnorr@inf.ufrgs.br>, starpu-devel@lists.gforge.inria.fr
  • Subject: Re: [Starpu-devel] hwloc detection problem when configuring starpu-svn-trunk and starpu-1.2.0rc5
  • Date: Wed, 17 Aug 2016 16:02:09 +0200
  • Authentication-results: mail3-smtp-sop.national.inria.fr; spf=None smtp.pra=nathalie.furmento@labri.fr; spf=None smtp.mailfrom=nathalie.furmento@labri.fr; spf=None smtp.helo=postmaster@v-zimmta03.u-bordeaux.fr
  • Ironport-phdr: 9a23:3q+NEhGuPHg4eTpOUf1EYp1GYnF86YWxBRYc798ds5kLTJ74o8uwAkXT6L1XgUPTWs2DsrQf2rOQ6fmrBzVIoc7Y9itTKNoUD15NoP5VtjRoONSCB0z/IayiRA0BN+MGamVY+WqmO1NeAsf0ag6aiHSz6TkPBke3blItdazLE4Lfx/66y/q1s8WKJV4Z3XznOPgsdV329VyX7ZhOx9M6a+4Y8VjgmjNwYeNYxGdldxq4vi3XwYOOxqNl6DlaoPk79sRNAu3QdqU8SqFEXnx9azhmrOWijxTITBOO630ASS1W10MQW0mWpC39C93VryDzraJYnmGhNs3wSqouE3z29KxrThjykg8GMTB/7W/Nhdc2hrgN5Fq6uxVl25ORbIyLOf5WeqLGYchcSmRGRMlcES1HGIK1KYUVXMQbOuMNiYDhp1IKrBb2KxS2Ae7p1jgA0nn/wa0z1+UsVw/bxgktGc4JmHDdps/0cqkIB7PmhJLUxCnOOqsFkQz275LFJ1V4+amB
  • List-archive: <http://lists.gforge.inria.fr/pipermail/starpu-devel/>
  • List-id: "Developers list. For discussion of new features, code changes, etc." <starpu-devel.lists.gforge.inria.fr>

Hi Lucas,

Could you also please send the config.log file of StarPU?

configure.ac checks the availability of the library with

       LDFLAGS="${SAVED_LDFLAGS} -L$hwloc_dir/lib"
       AC_HAVE_LIBRARY([hwloc],[have_valid_hwloc=yes],[have_valid_hwloc=no])

Could you check the contents of the directory /home/lschnorr/spack-orion/opt/spack/linux-x86_64/gcc-6.1.0/hwloc-1.11.3-j3wlufl4afo5kvid3vv4rutn55ljz2nx/lib ?

Thanks,

Nathalie

Le 17/08/2016 à 15:54, Lucas M. Schnorr a écrit :
Hi,

I am using spack to install Starpu. Spack has been installed this way:

git clone https://github.com/fpruvost/spack.git;
cd spack;
git checkout morse
source share/spack/setup-env.sh

Then, I launch starpu installation this way:

$ spack install -v -n --keep-stage starpu@svn-trunk+fxt~opencl %gcc@6.1.0
==> Installing starpu
==> fxt is already installed in /home/lschnorr/spack-orion/opt/spack/linux-x86_64/gcc-6.1.0/fxt-0.3.1-7cplb2duxldnevckobjnofq6tgpxffck
==> hwloc is already installed in /home/lschnorr/spack-orion/opt/spack/linux-x86_64/gcc-6.1.0/hwloc-1.11.3-j3wlufl4afo5kvid3vv4rutn55ljz2nx
==> Already fetched /home/lschnorr/spack-orion/var/spack/stage/starpu-svn-trunk-ew2ffhhvxulnikubqm76rijyluvps7ho/trunk
==> Already staged starpu-svn-trunk-ew2ffhhvxulnikubqm76rijyluvps7ho in /home/lschnorr/spack-orion/var/spack/stage/starpu-svn-trunk-ew2ffhhvxulnikubqm76rijyluvps7ho
==> No patches needed for starpu
==> Building starpu
#(...)
#Several messages
#(...)

configure: error: cannot find hwloc
==> Error: Command exited with status 1:
'./configure' '--prefix=/home/lschnorr/spack-orion/opt/spack/linux-x86_64/gcc-6.1.0/starpu-svn-trunk-ew2ffhhvxulnikubqm76rijyluvps7ho' '--disable-build-doc' '--disable-starpu-top' '--with-fxt=/home/lschnorr/spack-orion/opt/spack/linux-x86_64/gcc-6.1.0/fxt-0.3.1-7cplb2duxldnevckobjnofq6tgpxffck' '--enable-paje-codelet-details' '--with-hwloc=/home/lschnorr/spack-orion/opt/spack/linux-x86_64/gcc-6.1.0/hwloc-1.11.3-j3wlufl4afo5kvid3vv4rutn55ljz2nx' '--without-mpicc' '--disable-cuda' '--disable-opencl' '--enable-openmp=no'

I am attaching the corresponding spack-build.out.

The problem is that starpu's configure script is not taking into account :

--with-hwloc=/home/lschnorr/spack-orion/opt/spack/linux-x86_64/gcc-6.1.0/hwloc-1.11.3-j3wlufl4afo5kvid3vv4rutn55ljz2nx

When attempting to link against hwloc. The header is correctly found. I've already tried to edit the configure.ac, but without success. My system is a debian testing updated today (currently deployed in one machine of the orion cluster).
$ uname -a
Linux orion-4.lyon.grid5000.fr 4.6.0-1-amd64 #1 SMP Debian 4.6.4-1 (2016-07-18) x86_64 GNU/Linux
lschnorr@orion-4:~/spack-orion$

Any ideas how to overcome this problem?

I tested also against 1.2.0rc5 but the same problem happens.

Thanks
Lucas



_______________________________________________
Starpu-devel mailing list
Starpu-devel@lists.gforge.inria.fr
http://lists.gforge.inria.fr/mailman/listinfo/starpu-devel





Archives gérées par MHonArc 2.6.19+.

Haut de le page