BLAS LAPACK Installation

Поделиться
HTML-код
  • Опубликовано: 1 фев 2025

Комментарии • 10

  • @stanage_
    @stanage_ 7 месяцев назад +1

    Thank you very much for this tutorial.
    Please make more videos teaching quantum espresso and dft

  • @arteks2001
    @arteks2001 5 месяцев назад +1

    Thank you very much, professor.

  • @omarzayed3794
    @omarzayed3794 5 месяцев назад +1

    Great brother 🎉

  • @MariaLourdes-t2i
    @MariaLourdes-t2i Год назад +2

    Hi!
    Will this work for CBLAS as well?
    If not, what do i have to change to make it work?
    Thank you

  • @shirshak6738
    @shirshak6738 Год назад +1

    Thank you sir.

  • @robfl100
    @robfl100 Год назад +1

    Hey, after you transferred the two .a files to your other directory, what do you enter into the command line when you want to run a .f90 file that calls a lapack subroutine?

    • @supercomputer_Nepal
      @supercomputer_Nepal  Год назад +1

      The syntax is as below:
      gfortran hello.f9 -llapack -lblas -o hello.x

    • @robfl100
      @robfl100 Год назад +1

      @@supercomputer_Nepal do you need to copy any other files or directories in order to run that, or will the two .a files be enough for it to work?

    • @supercomputer_Nepal
      @supercomputer_Nepal  Год назад +1

      Only the two .a files on /usr/local/lib/

    • @robfl100
      @robfl100 Год назад +1

      @@supercomputer_Nepal ok, thanks. I did realize that in order for it to compile, the syntax needs to be
      main.f90 llapack.a lblas.a -o main.x