Displaying 5 results from an estimated 5 matches for "mydimension".
Did you mean:
dimension
2016 Mar 07
4
ALLOCATE in a FORTRAN subroutine
Hi Martyn,
Many thanks for your answer. If I make it short :
we can, once we know how to do it, 'drive' R from within FORTRAN for example to do a
Myarray = seq(0, mydimension)
in R once we have compute mydimension in FORTRAN. Is that correct ?
If yes : it's too 'complicated' for the time I am hired (I mean I have been hired to do FORTRAN code not to learn R !).
Second question : for what I have understood in r_exts, it's more 'efficient' to tra...
2013 Feb 13
0
[LLVMdev] write a transformation pass
...lo everyone,
I am trying to write a trivial adding metadata transformation pass. I have
Test.bc the target on which I want to perform transformations.
First, I compile with clang++ my target program and I have my resulting
Test.bc. I save it under Test1.bc.
As a particular example, I have " %myDimension = alloca
%class.ThreeDimension, align 4 ".
Second, I apply my pass :
//..../llvm/Release+Asserts/bin/opt -load
//home/alex/llvm/Release+Asserts/lib/my_test_metadata.so -my-metadata
//..../llvm/tools/clang/woRKSPACE/Test.bc
Test1.bc and Test.bc are the same. In Test.bc no metadata is added.
H...
2016 Mar 07
0
ALLOCATE in a FORTRAN subroutine
...To: Martyn Byng <martyn.byng at nag.co.uk>
Cc: r-devel at r-project.org
Subject: RE: ALLOCATE in a FORTRAN subroutine
Hi Martyn,
Many thanks for your answer. If I make it short :
we can, once we know how to do it, 'drive' R from within FORTRAN for example to do a
Myarray = seq(0, mydimension)
in R once we have compute mydimension in FORTRAN. Is that correct ?
If yes : it's too 'complicated' for the time I am hired (I mean I have been hired to do FORTRAN code not to learn R !).
Second question : for what I have understood in r_exts, it's more 'efficient' to tran...
2016 Mar 07
0
ALLOCATE in a FORTRAN subroutine
...On 7 Mar 2016, at 16:45, MAURICE Jean - externe <jean-externe.maurice at edf.fr> wrote:
>
> Hi Martyn,
>
> Many thanks for your answer. If I make it short :
> we can, once we know how to do it, 'drive' R from within FORTRAN for example to do a
> Myarray = seq(0, mydimension)
> in R once we have compute mydimension in FORTRAN. Is that correct ?
I too do not understand what you mean by this.
I told you on the R-help mailing list that what you could do is to
- write a subroutine that calculates the required dimension given your parameters; you can do this within...
2016 Mar 04
3
ALLOCATE in a FORTRAN subroutine
Hi,
I am a FORTRAN developer and I am 'translating' R functions in FORTRAN subroutines. I am 'new' to R. It's my first question in this mailing-list and English is not my natural language.
Very often, an R function gives an 'array' as result and you don't have to bother with the dimension of the array : R creates automatically an array with the good length.