Giter Club home page Giter Club logo

Comments (12)

lebedov avatar lebedov commented on July 20, 2024

What are the version numbers of the CUDA and CULA packages that you are using?

from scikit-cuda.

llvll0hsen avatar llvll0hsen commented on July 20, 2024

CUDA 4.1 and cula R14

On Tue, Jun 26, 2012 at 6:45 AM, Lev Givon <
[email protected]

wrote:

What are the version numbers of the CUDA and CULA packages that you are
using?


Reply to this email directly or view it on GitHub:
#17 (comment)

Mohsen Jadidi

from scikit-cuda.

lebedov avatar lebedov commented on July 20, 2024

Is /usr/local/cula/lib64/libcula.so a link to some other file? CULA R14 shouldn't contain any such file; it might be left over from an installation of an earlier release of CULA.

from scikit-cuda.

llvll0hsen avatar llvll0hsen commented on July 20, 2024

yes it doesnt have it so I just make a linker to libcula.core.so because
there where no libcula.so...so what should I do to fix it?

Thanks

On Tue, Jun 26, 2012 at 2:38 PM, Lev Givon <
[email protected]

wrote:

Is /usr/local/cula/lib64/libcula.so a link to some other file? CULA R14
shouldn't contain any such file; it might be left over from an installation
of an earlier release of CULA.


Reply to this email directly or view it on GitHub:
#17 (comment)

Mohsen Jadidi

from scikit-cuda.

llvll0hsen avatar llvll0hsen commented on July 20, 2024

I mean libcula_core.so

On Tue, Jun 26, 2012 at 2:48 PM, mohsen jadidi [email protected]:

yes it doesnt have it so I just make a linker to libcula.core.so because
there where no libcula.so...so what should I do to fix it?

Thanks

On Tue, Jun 26, 2012 at 2:38 PM, Lev Givon <
[email protected]

wrote:

Is /usr/local/cula/lib64/libcula.so a link to some other file? CULA R14
shouldn't contain any such file; it might be left over from an installation
of an earlier release of CULA.


Reply to this email directly or view it on GitHub:
#17 (comment)

Mohsen Jadidi

Mohsen Jadidi

from scikit-cuda.

lebedov avatar lebedov commented on July 20, 2024

I recommend removing the link altogether; most of the functions scikits.cuda loads from CULA are in libcula_lapack.so in R14, not libcula_core.so. If you do need to keep the link for some reason, try installing the latest scikits.cuda code from GitHub; I modified the CULA loader to look for libcula_lapack.so before libcula.so.

from scikit-cuda.

llvll0hsen avatar llvll0hsen commented on July 20, 2024

what do you mean by removing all links? you mean libcula_core.so and
libcula_so?

I how should I do the same modification?

today I re-install the scikits.cuda from the GitHub but still have the same
problem! I first remove all directories and files from my dist-packages
folder and then install it again with python setup.py install

am I missing something!?

On Tue, Jun 26, 2012 at 3:35 PM, Lev Givon <
[email protected]

wrote:

I recommend removing the link altogether; most of the functions
scikits.cuda loads from CULA are in libcula_lapack.so in R14, not
libcula_core.so. If you do need to keep the link for some reason, try
installing the latest scikits.cuda code from GitHub; I modified the CULA
loader to look for libcula_lapack.so before libcula.so.


Reply to this email directly or view it on GitHub:
#17 (comment)

Mohsen Jadidi

from scikit-cuda.

lebedov avatar lebedov commented on July 20, 2024

I meant that you should remove the link libcula.so -> libcula_core.so from the directory /usr/local/cula/lib64/; the directory should contain the following files:

lapackcpu.so
libcublas.so -> libcublas.so.4
libcublas.so.4 -> libcublas.so.4.1.28
libcublas.so.4.1.28
libcudart.so -> libcudart.so.4
libcudart.so.4 -> libcudart.so.4.1.28
libcudart.so.4.1.28
libcula_core.so
libcula_lapack_fortran.so
libcula_lapack_link.so
libcula_lapack_pgfortran.so
libcula_lapack.so
libcula_scalapack.so

from scikit-cuda.

llvll0hsen avatar llvll0hsen commented on July 20, 2024

Thanks,ok I did it, but how can I have clean installation of scikits? I
tried to install the development versions from the Github but I m still
have the problem with libcula.so

On Tue, Jun 26, 2012 at 8:57 PM, Lev Givon <
[email protected]

wrote:

I meant that you should remove the link libcula.so -> libcula_core.so from
the directory /usr/local/cula/lib64/; the directory should contain the
following files:

lapackcpu.so
libcublas.so -> libcublas.so.4
libcublas.so.4 -> libcublas.so.4.1.28
libcublas.so.4.1.28
libcudart.so -> libcudart.so.4
libcudart.so.4 -> libcudart.so.4.1.28
libcudart.so.4.1.28
libcula_core.so
libcula_lapack_fortran.so
libcula_lapack_link.so
libcula_lapack_pgfortran.so
libcula_lapack.so
libcula_scalapack.so

Reply to this email directly or view it on GitHub:
#17 (comment)

Mohsen Jadidi

from scikit-cuda.

lebedov avatar lebedov commented on July 20, 2024

If you install it as described in the documentation, the relevant files should be updated properly (how did you initially install it?) Note that if you are still observing the undefined symbol error you initially reported, then /usr/local/cula/lib64/libcula.so still exists.

from scikit-cuda.

llvll0hsen avatar llvll0hsen commented on July 20, 2024

initially I installed it with pip..but then try to re-install it
from manually. I changed the priority to libcula_lapack.so and now it
works fine. But I was just wondering how should I re-install it again in
case that I need to do it.

Thanks for your help

On Wed, Jun 27, 2012 at 8:52 PM, Lev Givon <
[email protected]

wrote:

If you install it as described in the documentation, the relevant files
should be updated properly (how did you initially install it?) Note that if
you are still observing the undefined symbol error you initially reported,
then /usr/local/cula/lib64/libcula.so still exists.


Reply to this email directly or view it on GitHub:
#17 (comment)

Mohsen Jadidi

from scikit-cuda.

lebedov avatar lebedov commented on July 20, 2024

If you are installing the package manually in the same destination as pip, I don't think it should matter. It's probably best to stick to one installation method in general, though.

from scikit-cuda.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.