Displaying 3 results from an estimated 3 matches for "dsytri_".
Did you mean:
dsyrk_
2020 Jul 15
2
Openblas?
...has
nothing to offer me, as my C code stands now. Is the problem that
openblas uses C versions of blas? I am using the Fortran version via
F77_CALL(name)
I tried adding
PKG_CFLAGS = $(SHLIB_OPENMP_CFLAGS)
PKG_LIBS = $(SHLIB_OPENMP_CFLAGS)
to src/Makevars, but then I got
...undefined symbol: dsytri_
when compiling.
G?ran
2020 Jul 15
0
Openblas?
...em that
| openblas uses C versions of blas? I am using the Fortran version via
|
| F77_CALL(name)
|
| I tried adding
|
| PKG_CFLAGS = $(SHLIB_OPENMP_CFLAGS)
| PKG_LIBS = $(SHLIB_OPENMP_CFLAGS)
This is missing LAPACK and BLAS so ...
|
| to src/Makevars, but then I got
|
| ...undefined symbol: dsytri_
... so get a _linker error_ about missing symbols.
| when compiling.
You meant linking, not compiling.
Dirk
--
https://dirk.eddelbuettel.com | @eddelbuettel | edd at debian.org
2020 Jul 15
2
Openblas?
...Fortran version via
> |
> | F77_CALL(name)
> |
> | I tried adding
> |
> | PKG_CFLAGS = $(SHLIB_OPENMP_CFLAGS)
> | PKG_LIBS = $(SHLIB_OPENMP_CFLAGS)
>
> This is missing LAPACK and BLAS so ...
> |
> | to src/Makevars, but then I got
> |
> | ...undefined symbol: dsytri_
>
> ... so get a _linker error_ about missing symbols.
>
> | when compiling.
>
> You meant linking, not compiling.
>
> Dirk
>