Displaying 10 results from an estimated 10 matches for "wlto".
Did you mean:
lto
2019 Apr 24
2
R problems with lapack with gfortran
...INTEGER INFO
CALL XERBLA ('FOO', INFO)
END
$ gfortran -c -fdump-tree-original xer.f
$ cat xer.f.004t.original
foo ()
{
integer(kind=4) info;
xerbla (&"FOO"[1]{lb: 1 sz: 1}, &info, 3);
}
so here we have three arguments. This mismatch is flagged
by -Wlto-type-mismatch, which, for example, yields
print.c:1120:12: note: type 'void' should match type 'long int'
../../src/extra/blas/blas.f:357:20: warning: type of 'xerbla' does not
match original declaration [-Wlto-type-mismatch]
357 | CALL XERBLA( 'DGBMV '...
2019 Sep 11
4
Fw: Calling a LAPACK subroutine from R
Berend,
I do not think this works with gfortran 7+. I am calling the BLAS
subroutine dgemv from Fortran code in my package eha, and the check
(with R-devel) gives:
gmlfun.f:223:1: warning: type of ?dgemv? does not match original
declaration [-Wlto-type-mismatch]
& score, ione)
^
/home/gobr0002/R/src/R-devel/include/R_ext/BLAS.h:107:1: note: type
mismatch in parameter 12
F77_NAME(dgemv)(const char *trans, const int *m, const int *n,
Type of a Fortran subroutine is matched against type of a C function?!
My conclusion is t...
2019 May 03
0
R problems with lapack with gfortran
...O)
> ????? END
> $ gfortran -c -fdump-tree-original xer.f
> $ cat xer.f.004t.original
> foo ()
> {
> ? integer(kind=4) info;
>
> ? xerbla (&"FOO"[1]{lb: 1 sz: 1}, &info, 3);
> }
>
> so here we have three arguments. This mismatch is flagged
> by -Wlto-type-mismatch, which, for example, yields
>
> print.c:1120:12: note: type 'void' should match type 'long int'
> ../../src/extra/blas/blas.f:357:20: warning: type of 'xerbla' does not
> match original declaration [-Wlto-type-mismatch]
> ? 357 |????????? CALL X...
2019 Sep 12
1
Calling a LAPACK subroutine from R
...>>
>> Berend,
>>
>> I do not think this works with gfortran 7+. I am calling the BLAS subroutine dgemv from Fortran code in my package eha, and the check (with R-devel) gives:
>>
>> gmlfun.f:223:1: warning: type of ?dgemv? does not match original declaration [-Wlto-type-mismatch]
>> & score, ione)
>> ^
>> /home/gobr0002/R/src/R-devel/include/R_ext/BLAS.h:107:1: note: type mismatch in parameter 12
>> F77_NAME(dgemv)(const char *trans, const int *m, const int *n,
>>
>> Type of a Fortran subroutine is matched agai...
2019 Sep 11
1
Fw: Calling a LAPACK subroutine from R
...Berend,
>
> I do not think this works with gfortran 7+. I am calling the BLAS
> subroutine dgemv from Fortran code in my package eha, and the check
> (with R-devel) gives:
>
> gmlfun.f:223:1: warning: type of ?dgemv? does not match original
> declaration [-Wlto-type-mismatch]
> ? ? ? ?&? ? ?score, ione)
> ? ^
> /home/gobr0002/R/src/R-devel/include/R_ext/BLAS.h:107:1: note: type
> mismatch in parameter 12
> ? F77_NAME(dgemv)(const char *trans, const int *m, const int *n,
>
> Type of a Fortran subroutine...
2019 Sep 12
0
Calling a LAPACK subroutine from R
...om at umu.se> wrote:
>
> Berend,
>
> I do not think this works with gfortran 7+. I am calling the BLAS subroutine dgemv from Fortran code in my package eha, and the check (with R-devel) gives:
>
> gmlfun.f:223:1: warning: type of ?dgemv? does not match original declaration [-Wlto-type-mismatch]
> & score, ione)
> ^
> /home/gobr0002/R/src/R-devel/include/R_ext/BLAS.h:107:1: note: type mismatch in parameter 12
> F77_NAME(dgemv)(const char *trans, const int *m, const int *n,
>
> Type of a Fortran subroutine is matched against type of a C functio...
2019 Sep 11
0
Fw: Calling a LAPACK subroutine from R
...u.se>
wrote:
> Berend,
>
> I do not think this works with gfortran 7+. I am calling the BLAS
> subroutine dgemv from Fortran code in my package eha, and the check
> (with R-devel) gives:
>
> gmlfun.f:223:1: warning: type of ?dgemv? does not match original
> declaration [-Wlto-type-mismatch]
> & score, ione)
> ^
> /home/gobr0002/R/src/R-devel/include/R_ext/BLAS.h:107:1: note: type
> mismatch in parameter 12
> F77_NAME(dgemv)(const char *trans, const int *m, const int *n,
>
> Type of a Fortran subroutine is matched against type of a...
2023 Nov 12
1
Segmentation fault early in compilation of revision 85514
...2 -lole32 -luuid -lwinmm -lversion
-L"/x86_64-w64-mingw32.static.posix"/lib/x64 -lpcre2-8 -lz -lbz2 -llzma
-L""/lib/x64 -lsicuin -lsicuuc
/x86_64-w64-mingw32.static.posix/lib/sicudt.a -lstdc++
rui.h:37:18: warning: type of 'RConsole' does not match original
declaration [-Wlto-type-mismatch]
37 | LibExtern window RConsole;
| ^
rui.c:51:9: note: type 'struct objinfo' should match type 'struct gui_obj'
51 | console RConsole = NULL;
| ^
rui.c:51:9: note: 'RConsole' was previously declared here
rui.c:51:9: no...
2019 Sep 12
0
Fw: Calling a LAPACK subroutine from R
...his works with gfortran 7+. I am calling the BLAS
>>>> subroutine dgemv from Fortran code in my package eha, and the check
>>>> (with R-devel) gives:
>>>
>>>> gmlfun.f:223:1: warning: type of ?dgemv? does not match original
>>>> declaration [-Wlto-type-mismatch]
>>>> ??????? &???? score, ione)
>>>> ?? ^
>>>> /home/gobr0002/R/src/R-devel/include/R_ext/BLAS.h:107:1: note: type
>>>> mismatch in parameter 12
>>>> ?? F77_NAME(dgemv)(const char *trans, const int *m, const int *n,
>...
2019 Sep 11
4
Fw: Calling a LAPACK subroutine from R
Sorry for cross-posting, but I realized my question might be more appropriate for r-devel...
Thank you,
Giovanni
________________________________________
From: R-help <r-help-bounces at r-project.org> on behalf of Giovanni Petris <gpetris at uark.edu>
Sent: Tuesday, September 10, 2019 16:44
To: r-help at r-project.org
Subject: [R] Calling a LAPACK subroutine from R
Hello R-helpers!