search for: thecode

Displaying 9 results from an estimated 9 matches for "thecode".

Did you mean: thecoder
2015 Oct 27
4
Code owner for the new AVR backend
On 27 Oct 2015, at 09:48, Senthil Kumar <senthil.thecoder at gmail.com> wrote: > > Haven't worked on this yet, but I work on the gcc AVR backend (and binutils), and I'm very interested in this - I intend to work on it in my spare time. And do you have any comments / objections to Dylan becoming the code owner? David
2011 Nov 16
1
hierachical code system
...ten uses two for loops, and, moreover, does not work as intended. My starting point was to determine the code depth by counting the dots in the variable 'code' (using strsplit), then iterate over the tree from deep to shallow. Does anybody have a good idea as to how to approach this in R?   theCodes <- c('STAT.01', 'STAT.01.01', 'STAT.01.01.01', 'STAT.01.01.02', 'STAT.01.01.03', 'STAT.01.01.04', 'STAT.01.01.05', 'STAT.01.01.06', 'STAT.01.01.06.01', 'STAT.01.01.06.02', 'STAT.01.01.06.03', 'STAT.01.01...
2005 Jan 13
1
Setting the width and height of a Sweave figure
Hello R-people, I have a function which plots two figures next to each other using if(dev.cur()==1) x11(width=14,height=7) to create a new window and set the size of the window automatically if no device is open. This works fine in interactive mode but I don't know how Sweave gets the parameters for the figures, and right now the default behavior causes this figure to be square and the
2011 Apr 17
1
sweave options with variable
hello: Do any one know how to set sweave option by variable, for example I want set some of my selected code chunk with: <<eval=needRun>>= rather than <<eval=TRUE>>=, so I can change the action only in the head by change the variable "needRun" one times. I have tried use "\Def" and "\newcommand", both do not work, so I suppose it is related
2007 Jul 26
1
Create Strings of Column Id's
...lumns into txt files for further use. To be able to keep track of which txt files contain which columns I want to name the filenames with the column Id's. The most basic example would be to use an for() loop together with paste(), but the result is blank. Not even NULL. this is the concept of thecode i use: for example MyMatrix <- matrix(NA,ncol=4,nrow=1,dimnames=list(NULL,c("E","R","T","Y"))) COL <- c(1,3) # a vector of columns I want to extract, Filename <- NULL # the starting variable, so I can use paste Filename <- for(i in colnames(MyM...
2004 Apr 14
1
question about /nmath/standalone
...includes the functions documented in Section 5.7 [Numerical analysis subroutines], page 61 as fromthat header file.) The library is not built automatically when R is installed, but can be built in the directory 'src/nmath/standalone? in the R sources: see the file 'README? there. To use thecode in your own C program include #define MATHLIB_STANDALONE #include <Rmath.h> and link against '-lRmath?. There is an example file 'test.c?." Have I to do: gcc -lRmath test.c ? In this case I receive this message: > /usr/bin/ld: cannot find -lRmath > collect2: ld return...
2015 Oct 27
2
Code owner for the new AVR backend
I think you can probably treat that as a broad ‘no objection’ by the community. Are there any other active contributors to the AVR back end? David > On 27 Oct 2015, at 09:41, Dylan McKay via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Ping. > > On Fri, Oct 23, 2015 at 4:04 PM, Dylan McKay <dylanmckay34 at gmail.com> wrote: > Hello all, > > I have
2015 Dec 16
2
Instruction scheduling done before or after register allocation
...ead the steps of code generation from here: The LLVM Target-Independent Code Generator — LLVM 3.8 documentation |   | |   | |   |   |   |   |   | | The LLVM Target-Independent Code Generator — LLVM 3...Instruction Selection Instruction Selection is the process of translating LLVM code presented to thecode generator into target-specific machine instructions. | | | | View on llvm.org | Preview by Yahoo | | | |   | Could you please confirm that on actual implementation of LLVM's code generator, the instruction scheduling is done before register allocation? Many thanks,Iulia Stirb -------------...
2015 Nov 14
2
(no subject)
Hello all! Please forgive me if this is the wrong mailing list for my question. First off, I am on Windows and using git bash for everything: $ uname MINGW32_NT-6.2 I am attempting to essentially do the kalidescope example. I have copied the code verbatim from the full code listing and am running the following command: $ clang-cl toy.cpp deps/llvm/build/Debug/lib/*.lib //MDd -o toy.exe -I